Title: [181938] trunk/Source/WebKit2
Revision
181938
Author
[email protected]
Date
2015-03-25 02:38:11 -0700 (Wed, 25 Mar 2015)

Log Message

[GTK][WK2] WebPageProxy::failedToShowPopupMenu() virtual method should be marked as override
https://bugs.webkit.org/show_bug.cgi?id=143045

Reviewed by Carlos Garcia Campos.

* UIProcess/WebPageProxy.h: Mark the failedToShowPopupMenu(), inherited from
the WebPopupMenuProxy::Client class, as overridden.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (181937 => 181938)


--- trunk/Source/WebKit2/ChangeLog	2015-03-25 09:32:33 UTC (rev 181937)
+++ trunk/Source/WebKit2/ChangeLog	2015-03-25 09:38:11 UTC (rev 181938)
@@ -1,5 +1,15 @@
 2015-03-25  Zan Dobersek  <[email protected]>
 
+        [GTK][WK2] WebPageProxy::failedToShowPopupMenu() virtual method should be marked as override
+        https://bugs.webkit.org/show_bug.cgi?id=143045
+
+        Reviewed by Carlos Garcia Campos.
+
+        * UIProcess/WebPageProxy.h: Mark the failedToShowPopupMenu(), inherited from
+        the WebPopupMenuProxy::Client class, as overridden.
+
+2015-03-25  Zan Dobersek  <[email protected]>
+
         [WK2] Clean up DrawingAreaImpl vtable overrides
         https://bugs.webkit.org/show_bug.cgi?id=143044
 

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.h (181937 => 181938)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2015-03-25 09:32:33 UTC (rev 181937)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2015-03-25 09:38:11 UTC (rev 181938)
@@ -1055,7 +1055,7 @@
     virtual void valueChangedForPopupMenu(WebPopupMenuProxy*, int32_t newSelectedIndex) override;
     virtual void setTextFromItemForPopupMenu(WebPopupMenuProxy*, int32_t index) override;
 #if PLATFORM(GTK)
-    virtual void failedToShowPopupMenu();
+    virtual void failedToShowPopupMenu() override;
 #endif
 
     void didCreateMainFrame(uint64_t frameID);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to