Title: [116651] trunk/Source/WebKit2
- Revision
- 116651
- Author
- [email protected]
- Date
- 2012-05-10 09:33:28 -0700 (Thu, 10 May 2012)
Log Message
[GTK] Missing field initializers for WKPageLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=86005
Patch by Simon Pena <[email protected]> on 2012-05-10
Reviewed by Martin Robinson.
Initialize willGoToBackForwardListItem and
interactionOccurredWhileProcessUnresponsive fields of
WKPageLoaderClient.
* UIProcess/API/gtk/WebKitLoaderClient.cpp:
(attachLoaderClientToView):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (116650 => 116651)
--- trunk/Source/WebKit2/ChangeLog 2012-05-10 16:17:53 UTC (rev 116650)
+++ trunk/Source/WebKit2/ChangeLog 2012-05-10 16:33:28 UTC (rev 116651)
@@ -1,3 +1,17 @@
+2012-05-10 Simon Pena <[email protected]>
+
+ [GTK] Missing field initializers for WKPageLoaderClient
+ https://bugs.webkit.org/show_bug.cgi?id=86005
+
+ Reviewed by Martin Robinson.
+
+ Initialize willGoToBackForwardListItem and
+ interactionOccurredWhileProcessUnresponsive fields of
+ WKPageLoaderClient.
+
+ * UIProcess/API/gtk/WebKitLoaderClient.cpp:
+ (attachLoaderClientToView):
+
2012-05-10 Kenneth Rohde Christiansen <[email protected]>
[Qt] Double tap to zoom is considered a user interaction
Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp (116650 => 116651)
--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp 2012-05-10 16:17:53 UTC (rev 116650)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp 2012-05-10 16:33:28 UTC (rev 116651)
@@ -145,7 +145,9 @@
0, // shouldGoToBackForwardListItem
0, // didFailToInitializePlugin
0, // didDetectXSSForFrame
- 0 // didFirstVisuallyNonEmptyLayoutForFrame
+ 0, // didFirstVisuallyNonEmptyLayoutForFrame
+ 0, // willGoToBackForwardListItem
+ 0 // interactionOccurredWhileProcessUnresponsive
};
WKPageRef wkPage = toAPI(webkitWebViewBaseGetPage(WEBKIT_WEB_VIEW_BASE(webView)));
WKPageSetPageLoaderClient(wkPage, &wkLoaderClient);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes