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

Unified Diff: Source/core/html/HTMLOptionElement.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/HTMLOptGroupElement.h ('k') | Source/core/html/HTMLOptionsCollection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOptionElement.h
diff --git a/Source/core/html/HTMLOptionElement.h b/Source/core/html/HTMLOptionElement.h
index da95f6a9a7f59a0627fdd1e73a16a5d8f79afe16..81673fb683961ea596e5e3b4d910dbac9f04ad54 100644
--- a/Source/core/html/HTMLOptionElement.h
+++ b/Source/core/html/HTMLOptionElement.h
@@ -61,7 +61,7 @@ public:
bool ownElementDisabled() const { return m_disabled; }
- virtual bool isDisabledFormControl() const override;
+ bool isDisabledFormControl() const override;
String textIndentedToRespectGroupLabel() const;
@@ -78,21 +78,21 @@ private:
explicit HTMLOptionElement(Document&);
~HTMLOptionElement();
- virtual bool supportsFocus() const override;
- virtual void attach(const AttachContext& = AttachContext()) override;
- virtual void detach(const AttachContext& = AttachContext()) override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void didNotifySubtreeInsertionsToDocument() override;
- virtual void removedFrom(ContainerNode*) override;
- virtual void accessKeyAction(bool) override;
- virtual void childrenChanged(const ChildrenChange&) override;
+ bool supportsFocus() const override;
+ void attach(const AttachContext& = AttachContext()) override;
+ void detach(const AttachContext& = AttachContext()) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void didNotifySubtreeInsertionsToDocument() override;
+ void removedFrom(ContainerNode*) override;
+ void accessKeyAction(bool) override;
+ void childrenChanged(const ChildrenChange&) override;
// <option> never has a layoutObject so we manually manage a cached style.
void updateNonComputedStyle();
- virtual ComputedStyle* nonLayoutObjectComputedStyle() const override;
- virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
+ ComputedStyle* nonLayoutObjectComputedStyle() const override;
+ PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
+ void didAddUserAgentShadowRoot(ShadowRoot&) override;
String collectOptionInnerText() const;
« no previous file with comments | « Source/core/html/HTMLOptGroupElement.h ('k') | Source/core/html/HTMLOptionsCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698