Title: [154474] trunk/Source/WebKit2
Revision
154474
Author
[email protected]
Date
2013-08-22 23:24:29 -0700 (Thu, 22 Aug 2013)

Log Message

[GTK] Wrong interface version used in WebKitWebPage for loader client
https://bugs.webkit.org/show_bug.cgi?id=120199

Reviewed by Gustavo Noronha Silva.

* WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
(webkitWebPageCreate): Use kWKBundlePageLoaderClientCurrentVersion
instead of kWKBundlePageResourceLoadClientCurrentVersion in loader
client initialization.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (154473 => 154474)


--- trunk/Source/WebKit2/ChangeLog	2013-08-23 04:39:55 UTC (rev 154473)
+++ trunk/Source/WebKit2/ChangeLog	2013-08-23 06:24:29 UTC (rev 154474)
@@ -1,3 +1,15 @@
+2013-08-22  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] Wrong interface version used in WebKitWebPage for loader client
+        https://bugs.webkit.org/show_bug.cgi?id=120199
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:
+        (webkitWebPageCreate): Use kWKBundlePageLoaderClientCurrentVersion
+        instead of kWKBundlePageResourceLoadClientCurrentVersion in loader
+        client initialization.
+
 2013-08-22  Simon Cooper  <[email protected]>
 
         Need to disable FakeSYSVSHM when sandboxing is not enabled

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp (154473 => 154474)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp	2013-08-23 04:39:55 UTC (rev 154473)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp	2013-08-23 06:24:29 UTC (rev 154474)
@@ -277,7 +277,7 @@
     page->priv->webPage = webPage;
 
     WKBundlePageLoaderClient loaderClient = {
-        kWKBundlePageResourceLoadClientCurrentVersion,
+        kWKBundlePageLoaderClientCurrentVersion,
         page,
         didStartProvisionalLoadForFrame,
         didReceiveServerRedirectForProvisionalLoadForFrame,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to