Merge with tip
parent
4027788dfc
commit
6cb3d25942
|
|
@ -62,6 +62,7 @@ LLPluginProcessParent::LLPluginProcessParent(LLPluginProcessParentOwner *owner)
|
|||
// initialize timer - heartbeat test (mHeartbeat.hasExpired())
|
||||
// can sometimes return true immediately otherwise and plugins
|
||||
// fail immediately because it looks like
|
||||
// mHeartbeat.initClass();
|
||||
mHeartbeat.setTimerExpirySec(PLUGIN_LOCKED_UP_SECONDS);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -205,7 +205,6 @@ private:
|
|||
{
|
||||
// create single browser window
|
||||
mBrowserWindowId = LLQtWebKit::getInstance()->createBrowserWindow( mWidth, mHeight );
|
||||
|
||||
#if LL_WINDOWS
|
||||
// Enable plugins
|
||||
LLQtWebKit::getInstance()->enablePlugins(true);
|
||||
|
|
@ -216,7 +215,9 @@ private:
|
|||
// Disable plugins
|
||||
LLQtWebKit::getInstance()->enablePlugins(false);
|
||||
#endif
|
||||
|
||||
// Enable cookies
|
||||
LLQtWebKit::getInstance()->enableCookies( true );
|
||||
|
||||
// tell LLQtWebKit about the size of the browser window
|
||||
LLQtWebKit::getInstance()->setSize( mBrowserWindowId, mWidth, mHeight );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue