Title: [137229] trunk/Source/WebKit2
- Revision
- 137229
- Author
- [email protected]
- Date
- 2012-12-10 17:18:03 -0800 (Mon, 10 Dec 2012)
Log Message
Add WKPageSetInvalidMessageFunction stub
https://bugs.webkit.org/show_bug.cgi?id=104614
<rdar://problem/12841671>
Reviewed by Mark Rowe.
* UIProcess/API/C/WKPage.cpp:
(WKPageSetInvalidMessageFunction):
* UIProcess/API/C/WKPagePrivate.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (137228 => 137229)
--- trunk/Source/WebKit2/ChangeLog 2012-12-11 01:13:19 UTC (rev 137228)
+++ trunk/Source/WebKit2/ChangeLog 2012-12-11 01:18:03 UTC (rev 137229)
@@ -1,3 +1,15 @@
+2012-12-10 Anders Carlsson <[email protected]>
+
+ Add WKPageSetInvalidMessageFunction stub
+ https://bugs.webkit.org/show_bug.cgi?id=104614
+ <rdar://problem/12841671>
+
+ Reviewed by Mark Rowe.
+
+ * UIProcess/API/C/WKPage.cpp:
+ (WKPageSetInvalidMessageFunction):
+ * UIProcess/API/C/WKPagePrivate.h:
+
2012-12-09 Antti Koivisto <[email protected]>
Factor node traversal into standalone functions
Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp (137228 => 137229)
--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp 2012-12-11 01:13:19 UTC (rev 137228)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp 2012-12-11 01:18:03 UTC (rev 137229)
@@ -769,3 +769,8 @@
{
toImpl(pageRef)->setMayStartMediaWhenInWindow(mayStartMedia);
}
+
+void WKPageSetInvalidMessageFunction(WKPageInvalidMessageFunction)
+{
+ // FIXME: Remove this function when doing so won't break WebKit nightlies.
+}
Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h (137228 => 137229)
--- trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h 2012-12-11 01:13:19 UTC (rev 137228)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h 2012-12-11 01:18:03 UTC (rev 137229)
@@ -97,6 +97,9 @@
WK_EXPORT WKArrayRef WKPageCopyRelatedPages(WKPageRef page);
+typedef void (*WKPageInvalidMessageFunction)(uint32_t messageID);
+WK_EXPORT void WKPageSetInvalidMessageFunction(WKPageInvalidMessageFunction function);
+
#ifdef __cplusplus
}
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes