Title: [147725] trunk/Source/WebKit2
Revision
147725
Author
[email protected]
Date
2013-04-05 01:22:13 -0700 (Fri, 05 Apr 2013)

Log Message

[GTK][WK2] WebKitLoaderClient: add missing initializers
https://bugs.webkit.org/show_bug.cgi?id=112961

Patch by Alberto Garcia <[email protected]> on 2013-04-05
Reviewed by Carlos Garcia Campos.

There are two new attributes: pluginLoadPolicy and pluginDidFail.

* UIProcess/API/gtk/WebKitLoaderClient.cpp:
(attachLoaderClientToView):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (147724 => 147725)


--- trunk/Source/WebKit2/ChangeLog	2013-04-05 08:20:29 UTC (rev 147724)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-05 08:22:13 UTC (rev 147725)
@@ -1,3 +1,15 @@
+2013-04-05  Alberto Garcia  <[email protected]>
+
+        [GTK][WK2] WebKitLoaderClient: add missing initializers
+        https://bugs.webkit.org/show_bug.cgi?id=112961
+
+        Reviewed by Carlos Garcia Campos.
+
+        There are two new attributes: pluginLoadPolicy and pluginDidFail.
+
+        * UIProcess/API/gtk/WebKitLoaderClient.cpp:
+        (attachLoaderClientToView):
+
 2013-04-05  Mikhail Pozdnyakov  <[email protected]>
 
         [WK2][EFL] Encapsulate view states set-up within WebView

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp (147724 => 147725)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp	2013-04-05 08:20:29 UTC (rev 147724)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp	2013-04-05 08:22:13 UTC (rev 147725)
@@ -168,10 +168,12 @@
         0, // didFirstVisuallyNonEmptyLayoutForFrame
         0, // willGoToBackForwardListItem
         0, // interactionOccurredWhileProcessUnresponsive
-        0, // pluginDidFail
+        0, // pluginDidFail_deprecatedForUseWithV1
         0, // didReceiveIntentForFrame
         0, // registerIntentServiceForFrame
         0, // didLayout
+        0, // pluginLoadPolicy
+        0, // pluginDidFail
     };
     WKPageRef wkPage = toAPI(webkitWebViewBaseGetPage(WEBKIT_WEB_VIEW_BASE(webView)));
     WKPageSetPageLoaderClient(wkPage, &wkLoaderClient);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to