Title: [168608] trunk/Source/WebKit2
Revision
168608
Author
commit-qu...@webkit.org
Date
2014-05-11 23:21:47 -0700 (Sun, 11 May 2014)

Log Message

REGRESSION(r168603): [GTK] Build broken.
https://bugs.webkit.org/show_bug.cgi?id=132810

Patch by Seongjun Kim <is...@company100.com> on 2014-05-11
Reviewed by Carlos Garcia Campos.

* UIProcess/API/gtk/WebKitWebContext.cpp:
(createDefaultWebContext):
Construct a WebContextConfiguration object and pass it to WebContext::create.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (168607 => 168608)


--- trunk/Source/WebKit2/ChangeLog	2014-05-12 04:54:34 UTC (rev 168607)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-12 06:21:47 UTC (rev 168608)
@@ -1,3 +1,14 @@
+2014-05-11  Seongjun Kim  <is...@company100.com>
+
+        REGRESSION(r168603): [GTK] Build broken.
+        https://bugs.webkit.org/show_bug.cgi?id=132810
+
+        Reviewed by Carlos Garcia Campos.
+
+        * UIProcess/API/gtk/WebKitWebContext.cpp:
+        (createDefaultWebContext):
+        Construct a WebContextConfiguration object and pass it to WebContext::create.
+
 2014-05-11  Anders Carlsson  <ander...@apple.com>
 
         Remove local storage directory and sandbox extension from WebProcessCreationParameters

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


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2014-05-12 04:54:34 UTC (rev 168607)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp	2014-05-12 06:21:47 UTC (rev 168608)
@@ -253,7 +253,10 @@
     static GRefPtr<WebKitWebContext> webContext = adoptGRef(WEBKIT_WEB_CONTEXT(g_object_new(WEBKIT_TYPE_WEB_CONTEXT, NULL)));
     WebKitWebContextPrivate* priv = webContext->priv;
 
-    priv->context = WebContext::create(WebCore::filenameToString(injectedBundleFilename().data()));
+    WebContextConfiguration webContextConfiguration;
+    webContextConfiguration.injectedBundlePath = WebCore::filenameToString(injectedBundleFilename().data());
+    priv->context = WebContext::create(std::move(webContextConfiguration));
+
     priv->requestManager = webContext->priv->context->supplement<WebSoupCustomProtocolRequestManager>();
     priv->context->setCacheModel(CacheModelPrimaryWebBrowser);
     priv->tlsErrorsPolicy = WEBKIT_TLS_ERRORS_POLICY_IGNORE;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to