Title: [148290] trunk/Source/WebKit/win
- Revision
- 148290
- Author
- [email protected]
- Date
- 2013-04-12 11:36:30 -0700 (Fri, 12 Apr 2013)
Log Message
All tests crash on Windows
https://bugs.webkit.org/show_bug.cgi?id=114522
Reviewed by Ryosuke Niwa.
In the MSVC++ ABI, a member function pointer will have a different size depending on whether the
class it belongs to is defined or not. Because of this, when passing member function pointers as parameters
it's important to ensure that the class is known by both the caller and the callee.
* WebFrame.cpp:
Include PolicyChecker.h
Modified Paths
Diff
Modified: trunk/Source/WebKit/win/ChangeLog (148289 => 148290)
--- trunk/Source/WebKit/win/ChangeLog 2013-04-12 18:06:35 UTC (rev 148289)
+++ trunk/Source/WebKit/win/ChangeLog 2013-04-12 18:36:30 UTC (rev 148290)
@@ -1,3 +1,17 @@
+2013-04-12 Anders Carlsson <[email protected]>
+
+ All tests crash on Windows
+ https://bugs.webkit.org/show_bug.cgi?id=114522
+
+ Reviewed by Ryosuke Niwa.
+
+ In the MSVC++ ABI, a member function pointer will have a different size depending on whether the
+ class it belongs to is defined or not. Because of this, when passing member function pointers as parameters
+ it's important to ensure that the class is known by both the caller and the callee.
+
+ * WebFrame.cpp:
+ Include PolicyChecker.h
+
2013-04-12 Jer Noble <[email protected]>
TimeRanges::nearest() returns incorrect results.
Modified: trunk/Source/WebKit/win/WebFrame.cpp (148289 => 148290)
--- trunk/Source/WebKit/win/WebFrame.cpp 2013-04-12 18:06:35 UTC (rev 148289)
+++ trunk/Source/WebKit/win/WebFrame.cpp 2013-04-12 18:36:30 UTC (rev 148290)
@@ -87,6 +87,7 @@
#include <WebCore/PluginData.h>
#include <WebCore/PluginDatabase.h>
#include <WebCore/PluginView.h>
+#include <WebCore/PolicyChecker.h>
#include <WebCore/PrintContext.h>
#include <WebCore/ResourceHandle.h>
#include <WebCore/ResourceLoader.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes