Title: [169163] trunk/Source/WebKit2
Revision
169163
Author
[email protected]
Date
2014-05-21 09:19:20 -0700 (Wed, 21 May 2014)

Log Message

REGRESSION(r168625): [GTK] Assertion failure in LocalStorageDatabaseTracker
https://bugs.webkit.org/show_bug.cgi?id=133118

Reviewed by Philippe Normand.

Call WebContext::applyPlatformSpecificConfigurationDefaults() to
initialize the WebContextConfiguration before creating the default WebContext.

* UIProcess/API/gtk/WebKitWebContext.cpp:
(createDefaultWebContext):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (169162 => 169163)


--- trunk/Source/WebKit2/ChangeLog	2014-05-21 16:14:55 UTC (rev 169162)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-21 16:19:20 UTC (rev 169163)
@@ -1,3 +1,16 @@
+2014-05-21  Carlos Garcia Campos  <[email protected]>
+
+        REGRESSION(r168625): [GTK] Assertion failure in LocalStorageDatabaseTracker
+        https://bugs.webkit.org/show_bug.cgi?id=133118
+
+        Reviewed by Philippe Normand.
+
+        Call WebContext::applyPlatformSpecificConfigurationDefaults() to
+        initialize the WebContextConfiguration before creating the default WebContext.
+
+        * UIProcess/API/gtk/WebKitWebContext.cpp:
+        (createDefaultWebContext):
+
 2014-05-21  Shivakumar JM  <[email protected]>
 
         [WebKit2] Cleanup the build from unused variable in WebProcess module

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp (169162 => 169163)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2014-05-21 16:14:55 UTC (rev 169162)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2014-05-21 16:19:20 UTC (rev 169163)
@@ -255,6 +255,7 @@
 
     WebContextConfiguration webContextConfiguration;
     webContextConfiguration.injectedBundlePath = WebCore::filenameToString(injectedBundleFilename().data());
+    WebContext::applyPlatformSpecificConfigurationDefaults(webContextConfiguration);
     priv->context = WebContext::create(std::move(webContextConfiguration));
 
     priv->requestManager = webContext->priv->context->supplement<WebSoupCustomProtocolRequestManager>();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to