Title: [174415] trunk/Source/WebKit2
Revision
174415
Author
commit-qu...@webkit.org
Date
2014-10-07 20:48:00 -0700 (Tue, 07 Oct 2014)

Log Message

Remove WKPageSetInvalidMessageFunction.
https://bugs.webkit.org/show_bug.cgi?id=137509

Patch by Sungmann Cho <sungmann....@navercorp.com> on 2014-10-07
Reviewed by Benjamin Poulain.

According to the FIXME comment in WKPageSetInvalidMessageFunction,
we can remove this function when doing so won't break the nightlies.
Currently, this is not used anywhere and does not break the nightlies.
So we can remove this.

* UIProcess/API/C/WKPage.cpp:
(WKPageSetInvalidMessageFunction): Deleted.
* UIProcess/API/C/WKPagePrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (174414 => 174415)


--- trunk/Source/WebKit2/ChangeLog	2014-10-08 02:23:10 UTC (rev 174414)
+++ trunk/Source/WebKit2/ChangeLog	2014-10-08 03:48:00 UTC (rev 174415)
@@ -1,3 +1,19 @@
+2014-10-07  Sungmann Cho  <sungmann....@navercorp.com>
+
+        Remove WKPageSetInvalidMessageFunction.
+        https://bugs.webkit.org/show_bug.cgi?id=137509
+
+        Reviewed by Benjamin Poulain.
+
+        According to the FIXME comment in WKPageSetInvalidMessageFunction,
+        we can remove this function when doing so won't break the nightlies.
+        Currently, this is not used anywhere and does not break the nightlies.
+        So we can remove this.
+
+        * UIProcess/API/C/WKPage.cpp:
+        (WKPageSetInvalidMessageFunction): Deleted.
+        * UIProcess/API/C/WKPagePrivate.h:
+
 2014-10-07  Christophe Dumez  <cdu...@apple.com>
 
         [WK2] Use is<>() / downcast<>() for DrawingArea subclasses

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp (174414 => 174415)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-10-08 02:23:10 UTC (rev 174414)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-10-08 03:48:00 UTC (rev 174415)
@@ -1898,11 +1898,6 @@
     return false;
 }
 
-void WKPageSetInvalidMessageFunction(WKPageInvalidMessageFunction)
-{
-    // FIXME: Remove this function when doing so won't break WebKit nightlies.
-}
-
 #if ENABLE(NETSCAPE_PLUGIN_API)
 
 // -- DEPRECATED --

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h (174414 => 174415)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h	2014-10-08 02:23:10 UTC (rev 174414)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h	2014-10-08 03:48:00 UTC (rev 174415)
@@ -98,9 +98,6 @@
     
 WK_EXPORT WKArrayRef WKPageCopyRelatedPages(WKPageRef page);
 
-typedef void (*WKPageInvalidMessageFunction)(uint32_t messageID);
-WK_EXPORT void WKPageSetInvalidMessageFunction(WKPageInvalidMessageFunction function);
-
 enum {
     kWKScrollPinningBehaviorDoNotPin,
     kWKScrollPinningBehaviorPinToTop,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to