Changeset 184068 in webkit
- Timestamp:
- May 11, 2015, 1:39:19 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/AccessibilityMockObject.h (modified) (1 diff)
-
accessibility/AccessibilityRenderObject.h (modified) (1 diff)
-
dom/DecodedDataDocumentParser.h (modified) (1 diff)
-
dom/TouchEvent.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r184067 r184068 1 2015-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 1 17 2015-05-10 Zan Dobersek <zdobersek@igalia.com> 2 18 -
trunk/Source/WebCore/accessibility/AccessibilityMockObject.h
r176948 r184068 50 50 private: 51 51 virtual bool isMockObject() const override final { return true; } 52 virtual bool isDetachedFromParent() { return !m_parent; }52 virtual bool isDetachedFromParent() override { return !m_parent; } 53 53 54 54 virtual bool computeAccessibilityIsIgnored() const override; -
trunk/Source/WebCore/accessibility/AccessibilityRenderObject.h
r179253 r184068 266 266 void updateAttachmentViewParents(); 267 267 #endif 268 virtual String expandedTextValue() const ;269 virtual bool supportsExpandedTextValue() const ;268 virtual String expandedTextValue() const override; 269 virtual bool supportsExpandedTextValue() const override; 270 270 void updateRoleAfterChildrenCreation(); 271 271 -
trunk/Source/WebCore/dom/DecodedDataDocumentParser.h
r162180 r184068 42 42 private: 43 43 // append is used by DocumentWriter::replaceDocument. 44 virtual void append(PassRefPtr<StringImpl>) = 0;44 virtual void append(PassRefPtr<StringImpl>) override = 0; 45 45 46 46 // appendBytes and flush are used by DocumentWriter (the loader). -
trunk/Source/WebCore/dom/TouchEvent.h
r177264 r184068 72 72 virtual bool isTouchEvent() const override; 73 73 74 virtual EventInterface eventInterface() const ;74 virtual EventInterface eventInterface() const override; 75 75 76 76 private:
Note:
See TracChangeset
for help on using the changeset viewer.