summaryrefslogtreecommitdiff
path: root/indra/test_apps/llfbconnecttest
diff options
context:
space:
mode:
authorCho <cho@lindenlab.com>2013-02-23 01:05:00 +0000
committerCho <cho@lindenlab.com>2013-02-23 01:05:00 +0000
commit676838ac58ca8e07f473e25055310cf70e58e8b2 (patch)
tree78974e8e8fe0210945dbab84c6cf1dfaa856ff35 /indra/test_apps/llfbconnecttest
parenta7f1abded200a6099076242370abdb967c801b60 (diff)
ACME-72 FIX Streamline Webkit test app for FB Connect testing
Enabled cookies by default and set starting URL to https://cryptic-ridge-1632.herokuapp.com/
Diffstat (limited to 'indra/test_apps/llfbconnecttest')
-rw-r--r--indra/test_apps/llfbconnecttest/llfbconnecttest.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp b/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp
index 1a0c783376..483a15c468 100644
--- a/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp
+++ b/indra/test_apps/llfbconnecttest/llfbconnecttest.cpp
@@ -133,7 +133,7 @@ LLFBConnectTest::LLFBConnectTest( int app_window, int window_width, int window_h
mGluiMediaBrowserControlWindowFlag( true ),
mMediaBrowserControlBackButtonFlag( true ),
mMediaBrowserControlForwardButtonFlag( true ),
- mHomeWebUrl( "http://www.facebook.com/" )
+ mHomeWebUrl( "https://cryptic-ridge-1632.herokuapp.com/" )
{
// debugging spam
std::cout << std::endl << " GLUT version: " << "3.7.6" << std::endl; // no way to get real version from GLUT
@@ -1613,6 +1613,9 @@ mediaPanel* LLFBConnectTest::addMediaPanel( std::string url )
// make a new plugin
LLPluginClassMedia* media_source = new LLPluginClassMedia(this);
+ // enable cookies so the FB login works
+ media_source->enable_cookies(true);
+
// tell the plugin what size we asked for
media_source->setSize( media_width, media_height );