Title: [205429] trunk/Source/WebKit2
- Revision
- 205429
- Author
- [email protected]
- Date
- 2016-09-05 00:14:41 -0700 (Mon, 05 Sep 2016)
Log Message
[GObject bindings] override handleEvent() method in GObjectEventListener
https://bugs.webkit.org/show_bug.cgi?id=161593
Reviewed by Carlos Garcia Campos.
* WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h: Override
the handleMethod() which is inherited from the WebCore EventListener class.
Suppresses the -Winconsistent-missing-override warning that Clang propagates.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (205428 => 205429)
--- trunk/Source/WebKit2/ChangeLog 2016-09-05 06:49:33 UTC (rev 205428)
+++ trunk/Source/WebKit2/ChangeLog 2016-09-05 07:14:41 UTC (rev 205429)
@@ -1,3 +1,14 @@
+2016-09-05 Zan Dobersek <[email protected]>
+
+ [GObject bindings] override handleEvent() method in GObjectEventListener
+ https://bugs.webkit.org/show_bug.cgi?id=161593
+
+ Reviewed by Carlos Garcia Campos.
+
+ * WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h: Override
+ the handleMethod() which is inherited from the WebCore EventListener class.
+ Suppresses the -Winconsistent-missing-override warning that Clang propagates.
+
2016-09-04 Joseph Pecoraro <[email protected]>
Remove unnecessary RetainPtr.
Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h (205428 => 205429)
--- trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h 2016-09-05 06:49:33 UTC (rev 205428)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h 2016-09-05 07:14:41 UTC (rev 205429)
@@ -63,7 +63,7 @@
~GObjectEventListener();
void gobjectDestroyed();
- virtual void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*);
+ void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) override;
GObject* m_target;
// We do not need to keep a reference to the m_coreTarget, because
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes