Changeset 205429 in webkit


Ignore:
Timestamp:
Sep 5, 2016 12:14:41 AM (8 years ago)
Author:
zandobersek@gmail.com
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.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r205427 r205429  
     12016-09-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GObject bindings] override handleEvent() method in GObjectEventListener
     4        https://bugs.webkit.org/show_bug.cgi?id=161593
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h: Override
     9        the handleMethod() which is inherited from the WebCore EventListener class.
     10        Suppresses the -Winconsistent-missing-override warning that Clang propagates.
     11
    1122016-09-04  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/GObjectEventListener.h

    r205280 r205429  
    6464    void gobjectDestroyed();
    6565
    66     virtual void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*);
     66    void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) override;
    6767
    6868    GObject* m_target;
Note: See TracChangeset for help on using the changeset viewer.