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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/PluginPlaceholderElement.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 5a3ded6e5429ed5b7ee8ab22f18ff1684983aedf..827b6be2c9c52e1e96f54e0230ddb470c29b1305 100644
--- a/Source/core/html/shadow/PickerIndicatorElement.h
+++ b/Source/core/html/shadow/PickerIndicatorElement.h
@@ -40,7 +40,7 @@ namespace blink {
class HTMLInputElement;
-class PickerIndicatorElement FINAL : public HTMLDivElement, public DateTimeChooserClient {
+class PickerIndicatorElement final : public HTMLDivElement, public DateTimeChooserClient {
public:
// PickerIndicatorOwner implementer must call removePickerIndicatorOwner when
// it doesn't handle event, e.g. at destruction.
@@ -57,28 +57,28 @@ public:
static PassRefPtrWillBeRawPtr<PickerIndicatorElement> create(Document&, PickerIndicatorOwner&);
virtual ~PickerIndicatorElement();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
void openPopup();
void closePopup();
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
+ virtual 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;
+ virtual Element& ownerElement() const override;
+ virtual void didChooseValue(const String&) override;
+ virtual void didChooseValue(double) override;
+ virtual void didEndChooser() override;
private:
PickerIndicatorElement(Document&, PickerIndicatorOwner&);
- virtual RenderObject* createRenderer(RenderStyle*) 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;
+ virtual RenderObject* createRenderer(RenderStyle*) 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;
HTMLInputElement* hostInput();
« no previous file with comments | « Source/core/html/shadow/MeterShadowElement.h ('k') | Source/core/html/shadow/PluginPlaceholderElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698