Title: [184068] trunk/Source/WebCore
Revision
184068
Author
[email protected]
Date
2015-05-11 01:39:19 -0700 (Mon, 11 May 2015)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (184067 => 184068)


--- trunk/Source/WebCore/ChangeLog	2015-05-11 06:38:50 UTC (rev 184067)
+++ trunk/Source/WebCore/ChangeLog	2015-05-11 08:39:19 UTC (rev 184068)
@@ -1,3 +1,19 @@
+2015-05-11  Zan Dobersek  <[email protected]>
+
+        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:
+
 2015-05-10  Zan Dobersek  <[email protected]>
 
         Have MediaStream::getAudioTracks(), MediaStream::getVideoTracks() return const references

Modified: trunk/Source/WebCore/accessibility/AccessibilityMockObject.h (184067 => 184068)


--- trunk/Source/WebCore/accessibility/AccessibilityMockObject.h	2015-05-11 06:38:50 UTC (rev 184067)
+++ trunk/Source/WebCore/accessibility/AccessibilityMockObject.h	2015-05-11 08:39:19 UTC (rev 184068)
@@ -49,7 +49,7 @@
 
 private:
     virtual bool isMockObject() const override final { return true; }
-    virtual bool isDetachedFromParent() { return !m_parent; }
+    virtual bool isDetachedFromParent() override { return !m_parent; }
 
     virtual bool computeAccessibilityIsIgnored() const override;
 };

Modified: trunk/Source/WebCore/accessibility/AccessibilityRenderObject.h (184067 => 184068)


--- trunk/Source/WebCore/accessibility/AccessibilityRenderObject.h	2015-05-11 06:38:50 UTC (rev 184067)
+++ trunk/Source/WebCore/accessibility/AccessibilityRenderObject.h	2015-05-11 08:39:19 UTC (rev 184068)
@@ -265,8 +265,8 @@
 #if PLATFORM(COCOA)
     void updateAttachmentViewParents();
 #endif
-    virtual String expandedTextValue() const;
-    virtual bool supportsExpandedTextValue() const;
+    virtual String expandedTextValue() const override;
+    virtual bool supportsExpandedTextValue() const override;
     void updateRoleAfterChildrenCreation();
     
     void ariaSelectedRows(AccessibilityChildrenVector&);

Modified: trunk/Source/WebCore/dom/DecodedDataDocumentParser.h (184067 => 184068)


--- trunk/Source/WebCore/dom/DecodedDataDocumentParser.h	2015-05-11 06:38:50 UTC (rev 184067)
+++ trunk/Source/WebCore/dom/DecodedDataDocumentParser.h	2015-05-11 08:39:19 UTC (rev 184068)
@@ -41,7 +41,7 @@
 
 private:
     // append is used by DocumentWriter::replaceDocument.
-    virtual void append(PassRefPtr<StringImpl>) = 0;
+    virtual void append(PassRefPtr<StringImpl>) override = 0;
 
     // appendBytes and flush are used by DocumentWriter (the loader).
     virtual void appendBytes(DocumentWriter&, const char* bytes, size_t length) override;

Modified: trunk/Source/WebCore/dom/TouchEvent.h (184067 => 184068)


--- trunk/Source/WebCore/dom/TouchEvent.h	2015-05-11 06:38:50 UTC (rev 184067)
+++ trunk/Source/WebCore/dom/TouchEvent.h	2015-05-11 08:39:19 UTC (rev 184068)
@@ -71,7 +71,7 @@
 
     virtual bool isTouchEvent() const override;
 
-    virtual EventInterface eventInterface() const;
+    virtual EventInterface eventInterface() const override;
 
 private:
     TouchEvent();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to