Title: [232280] trunk/Source/WebKit
Revision
232280
Author
commit-qu...@webkit.org
Date
2018-05-29 17:03:33 -0700 (Tue, 29 May 2018)

Log Message

Remove unused WebPage::dummy
https://bugs.webkit.org/show_bug.cgi?id=186068

Patch by Alex Christensen <achristen...@webkit.org> on 2018-05-29
Reviewed by Sam Weinig.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::dummy): Deleted.
* WebProcess/WebPage/WebPage.h:
* WebProcess/WebPage/WebPage.messages.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (232279 => 232280)


--- trunk/Source/WebKit/ChangeLog	2018-05-29 23:48:35 UTC (rev 232279)
+++ trunk/Source/WebKit/ChangeLog	2018-05-30 00:03:33 UTC (rev 232280)
@@ -1,3 +1,15 @@
+2018-05-29  Alex Christensen  <achristen...@webkit.org>
+
+        Remove unused WebPage::dummy
+        https://bugs.webkit.org/show_bug.cgi?id=186068
+
+        Reviewed by Sam Weinig.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::dummy): Deleted.
+        * WebProcess/WebPage/WebPage.h:
+        * WebProcess/WebPage/WebPage.messages.in:
+
 2018-05-29  Per Arne Vollan  <pvol...@apple.com>
 
         Create typedef for HashMap<PlatformDisplayID, ScreenProperties>

Modified: trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp (232279 => 232280)


--- trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2018-05-29 23:48:35 UTC (rev 232279)
+++ trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2018-05-30 00:03:33 UTC (rev 232280)
@@ -730,10 +730,6 @@
 #endif
 }
 
-void WebPage::dummy(bool&)
-{
-}
-
 IPC::Connection* WebPage::messageSenderConnection()
 {
     return WebProcess::singleton().parentProcessConnection();

Modified: trunk/Source/WebKit/WebProcess/WebPage/WebPage.h (232279 => 232280)


--- trunk/Source/WebKit/WebProcess/WebPage/WebPage.h	2018-05-29 23:48:35 UTC (rev 232279)
+++ trunk/Source/WebKit/WebProcess/WebPage/WebPage.h	2018-05-30 00:03:33 UTC (rev 232280)
@@ -760,10 +760,6 @@
     bool hasCompositionForTesting();
     void confirmCompositionForTesting(const String& compositionString);
 
-    // FIXME: This a dummy message, to avoid breaking the build for platforms that don't require
-    // any synchronous messages, and should be removed when <rdar://problem/8775115> is fixed.
-    void dummy(bool&);
-
 #if PLATFORM(COCOA)
     bool isSpeaking();
     void speak(const String&);

Modified: trunk/Source/WebKit/WebProcess/WebPage/WebPage.messages.in (232279 => 232280)


--- trunk/Source/WebKit/WebProcess/WebPage/WebPage.messages.in	2018-05-29 23:48:35 UTC (rev 232279)
+++ trunk/Source/WebKit/WebProcess/WebPage/WebPage.messages.in	2018-05-30 00:03:33 UTC (rev 232280)
@@ -357,10 +357,6 @@
     SetVolumeOfMediaElement(double volume, uint64_t elementID)
 #endif
 
-    // FIXME: This a dummy message, to avoid breaking the build for platforms that don't require
-    // any synchronous messages, and should be removed when <rdar://problem/8775115> is fixed.
-    Dummy() -> (bool dummyReturn)
-
     SetCanRunBeforeUnloadConfirmPanel(bool canRunBeforeUnloadConfirmPanel)
     SetCanRunModal(bool canRunModal)
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to