Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1693)

Unified Diff: Source/modules/accessibility/AXMockObject.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/accessibility/AXMenuListPopup.h ('k') | Source/modules/accessibility/AXNodeObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXMockObject.h
diff --git a/Source/modules/accessibility/AXMockObject.h b/Source/modules/accessibility/AXMockObject.h
index d37aa2a7b19daa7f8fdfe45e54e5c2b910091806..adbe17f5602615fad6aae46c53f3e8088eb63197 100644
--- a/Source/modules/accessibility/AXMockObject.h
+++ b/Source/modules/accessibility/AXMockObject.h
@@ -39,16 +39,16 @@ protected:
explicit AXMockObject(AXObjectCacheImpl&);
public:
- virtual ~AXMockObject();
+ ~AXMockObject() override;
// AXObject overrides.
- virtual AXObject* computeParent() const override { return m_parent; }
- virtual bool isEnabled() const override { return true; }
+ AXObject* computeParent() const override { return m_parent; }
+ bool isEnabled() const override { return true; }
private:
- virtual bool isMockObject() const override final { return true; }
+ bool isMockObject() const final { return true; }
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXMockObject, isMockObject());
« no previous file with comments | « Source/modules/accessibility/AXMenuListPopup.h ('k') | Source/modules/accessibility/AXNodeObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698