⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 184068 in webkit


Ignore:
Timestamp:
May 11, 2015, 1:39:19 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Add missing vtable override specifiers under Source/WebCore/accessibility, Source/WebCore/dom
https://bugs.webkit.org/show_bug.cgi?id=144792

Reviewed by Darin Adler.

Update virtual method overrides under Source/WebCore/accessibility
and Source/WebCore/dom which are missing the override specifier.

  • accessibility/AccessibilityMockObject.h:

(WebCore::AccessibilityMockObject::isDetachedFromParent): Deleted.

  • accessibility/AccessibilityRenderObject.h:
  • dom/DecodedDataDocumentParser.h:
  • dom/TouchEvent.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r184067 r184068  
     12015-05-11  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Add missing vtable override specifiers under Source/WebCore/accessibility, Source/WebCore/dom
     4        https://bugs.webkit.org/show_bug.cgi?id=144792
     5
     6        Reviewed by Darin Adler.
     7
     8        Update virtual method overrides under Source/WebCore/accessibility
     9        and Source/WebCore/dom which are missing the override specifier.
     10
     11        * accessibility/AccessibilityMockObject.h:
     12        (WebCore::AccessibilityMockObject::isDetachedFromParent): Deleted.
     13        * accessibility/AccessibilityRenderObject.h:
     14        * dom/DecodedDataDocumentParser.h:
     15        * dom/TouchEvent.h:
     16
    1172015-05-10  Zan Dobersek  <zdobersek@igalia.com>
    218
  • trunk/Source/WebCore/accessibility/AccessibilityMockObject.h

    r176948 r184068  
    5050private:
    5151    virtual bool isMockObject() const override final { return true; }
    52     virtual bool isDetachedFromParent() { return !m_parent; }
     52    virtual bool isDetachedFromParent() override { return !m_parent; }
    5353
    5454    virtual bool computeAccessibilityIsIgnored() const override;
  • trunk/Source/WebCore/accessibility/AccessibilityRenderObject.h

    r179253 r184068  
    266266    void updateAttachmentViewParents();
    267267#endif
    268     virtual String expandedTextValue() const;
    269     virtual bool supportsExpandedTextValue() const;
     268    virtual String expandedTextValue() const override;
     269    virtual bool supportsExpandedTextValue() const override;
    270270    void updateRoleAfterChildrenCreation();
    271271   
  • trunk/Source/WebCore/dom/DecodedDataDocumentParser.h

    r162180 r184068  
    4242private:
    4343    // append is used by DocumentWriter::replaceDocument.
    44     virtual void append(PassRefPtr<StringImpl>) = 0;
     44    virtual void append(PassRefPtr<StringImpl>) override = 0;
    4545
    4646    // appendBytes and flush are used by DocumentWriter (the loader).
  • trunk/Source/WebCore/dom/TouchEvent.h

    r177264 r184068  
    7272    virtual bool isTouchEvent() const override;
    7373
    74     virtual EventInterface eventInterface() const;
     74    virtual EventInterface eventInterface() const override;
    7575
    7676private:
Note: See TracChangeset for help on using the changeset viewer.