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

Unified Diff: Source/core/accessibility/AXSlider.h

Issue 131093003: Update accessibility classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/core/accessibility/AXScrollbar.h ('k') | Source/core/accessibility/AXSpinButton.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXSlider.h
diff --git a/Source/core/accessibility/AXSlider.h b/Source/core/accessibility/AXSlider.h
index 54b8a1b2a536378a254ab9dba78032022d383cec..aa9d01b986eb8249f7893f816e70f7eff890deda 100644
--- a/Source/core/accessibility/AXSlider.h
+++ b/Source/core/accessibility/AXSlider.h
@@ -47,22 +47,22 @@ protected:
private:
HTMLInputElement* element() const;
- virtual AXObject* elementAccessibilityHitTest(const IntPoint&) const OVERRIDE;
+ virtual AXObject* elementAccessibilityHitTest(const IntPoint&) const OVERRIDE FINAL;
virtual AccessibilityRole roleValue() const OVERRIDE { return SliderRole; }
- virtual bool isSlider() const OVERRIDE { return true; }
- virtual bool isControl() const OVERRIDE { return true; }
+ virtual bool isSlider() const OVERRIDE FINAL { return true; }
+ virtual bool isControl() const OVERRIDE FINAL { return true; }
- virtual void addChildren() OVERRIDE;
+ virtual void addChildren() OVERRIDE FINAL;
- virtual bool canSetValueAttribute() const OVERRIDE { return true; }
+ virtual bool canSetValueAttribute() const OVERRIDE FINAL { return true; }
const AtomicString& getAttribute(const QualifiedName& attribute) const;
- virtual void setValue(const String&) OVERRIDE;
- virtual AccessibilityOrientation orientation() const OVERRIDE;
+ virtual void setValue(const String&) OVERRIDE FINAL;
+ virtual AccessibilityOrientation orientation() const OVERRIDE FINAL;
};
-class AXSliderThumb : public AXMockObject {
+class AXSliderThumb FINAL : public AXMockObject {
public:
static PassRefPtr<AXSliderThumb> create();
« no previous file with comments | « Source/core/accessibility/AXScrollbar.h ('k') | Source/core/accessibility/AXSpinButton.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698