Title: [154602] trunk/Source/WebKit2
Revision
154602
Author
[email protected]
Date
2013-08-26 08:02:42 -0700 (Mon, 26 Aug 2013)

Log Message

[WebKit2] Offsets for WKBundlePageLoaderClient in APIClientTraits are wrong
https://bugs.webkit.org/show_bug.cgi?id=120268

Reviewed by Anders Carlsson.

* Shared/APIClientTraits.cpp: Use always the first member of every
version as the offset of the version.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (154601 => 154602)


--- trunk/Source/WebKit2/ChangeLog	2013-08-26 13:32:12 UTC (rev 154601)
+++ trunk/Source/WebKit2/ChangeLog	2013-08-26 15:02:42 UTC (rev 154602)
@@ -1,5 +1,15 @@
 2013-08-26  Carlos Garcia Campos  <[email protected]>
 
+        [WebKit2] Offsets for WKBundlePageLoaderClient in APIClientTraits are wrong
+        https://bugs.webkit.org/show_bug.cgi?id=120268
+
+        Reviewed by Anders Carlsson.
+
+        * Shared/APIClientTraits.cpp: Use always the first member of every
+        version as the offset of the version.
+
+2013-08-26  Carlos Garcia Campos  <[email protected]>
+
         [GTK] Add missing initializer for pluginLoadPolicy in WKPageLoaderClient
         https://bugs.webkit.org/show_bug.cgi?id=120289
 

Modified: trunk/Source/WebKit2/Shared/APIClientTraits.cpp (154601 => 154602)


--- trunk/Source/WebKit2/Shared/APIClientTraits.cpp	2013-08-26 13:32:12 UTC (rev 154601)
+++ trunk/Source/WebKit2/Shared/APIClientTraits.cpp	2013-08-26 15:02:42 UTC (rev 154602)
@@ -40,10 +40,10 @@
     offsetof(WKBundlePageLoaderClient, didLayoutForFrame),
     offsetof(WKBundlePageLoaderClient, didFinishProgress),
     offsetof(WKBundlePageLoaderClient, didReceiveIntentForFrame_unavailable),
-    offsetof(WKBundlePageLoaderClient, registerIntentServiceForFrame_unavailable),
     offsetof(WKBundlePageLoaderClient, didLayout),
     offsetof(WKBundlePageLoaderClient, featuresUsedInPage),
-    offsetof(WKBundlePageLoaderClient, willLoadDataRequest),
+    offsetof(WKBundlePageLoaderClient, willLoadURLRequest),
+    offsetof(WKBundlePageLoaderClient, willDestroyFrame),
     sizeof(WKBundlePageLoaderClient)
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to