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

Unified Diff: Source/core/html/shadow/PickerIndicatorElement.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/html/shadow/MeterShadowElement.h ('k') | Source/core/html/shadow/ProgressShadowElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/PickerIndicatorElement.h
diff --git a/Source/core/html/shadow/PickerIndicatorElement.h b/Source/core/html/shadow/PickerIndicatorElement.h
index 327ee40fa487574475195c1ee955e4db5cf0607f..f24f1f4044ea98ee4448ba35e87ccda4fcdd37a6 100644
--- a/Source/core/html/shadow/PickerIndicatorElement.h
+++ b/Source/core/html/shadow/PickerIndicatorElement.h
@@ -56,29 +56,29 @@ public:
};
static PassRefPtrWillBeRawPtr<PickerIndicatorElement> create(Document&, PickerIndicatorOwner&);
- virtual ~PickerIndicatorElement();
+ ~PickerIndicatorElement() override;
DECLARE_VIRTUAL_TRACE();
void openPopup();
void closePopup();
- virtual bool willRespondToMouseClickEvents() override;
+ bool willRespondToMouseClickEvents() override;
void removePickerIndicatorOwner() { m_pickerIndicatorOwner = nullptr; }
AXObject* popupRootAXObject() const;
// DateTimeChooserClient implementation.
- virtual Element& ownerElement() const override;
- virtual void didChooseValue(const String&) override;
- virtual void didChooseValue(double) override;
- virtual void didEndChooser() override;
+ Element& ownerElement() const override;
+ void didChooseValue(const String&) override;
+ void didChooseValue(double) override;
+ void didEndChooser() override;
private:
PickerIndicatorElement(Document&, PickerIndicatorOwner&);
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual void defaultEventHandler(Event*) override;
- virtual void detach(const AttachContext& = AttachContext()) override;
- virtual bool isPickerIndicatorElement() const override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void didNotifySubtreeInsertionsToDocument() override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ void defaultEventHandler(Event*) override;
+ void detach(const AttachContext& = AttachContext()) override;
+ bool isPickerIndicatorElement() const override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void didNotifySubtreeInsertionsToDocument() override;
HTMLInputElement* hostInput();
« no previous file with comments | « Source/core/html/shadow/MeterShadowElement.h ('k') | Source/core/html/shadow/ProgressShadowElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698