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

Unified Diff: Source/core/html/HTMLFormControlsCollection.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/HTMLFormControlElementWithState.h ('k') | Source/core/html/HTMLFormElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormControlsCollection.h
diff --git a/Source/core/html/HTMLFormControlsCollection.h b/Source/core/html/HTMLFormControlsCollection.h
index ff7de57a9aff9f2299675a06a69223e16be2a35f..c8a7c61a24cf731e5cbb85d348bcbd8ce942ad83 100644
--- a/Source/core/html/HTMLFormControlsCollection.h
+++ b/Source/core/html/HTMLFormControlsCollection.h
@@ -36,7 +36,7 @@ class HTMLImageElement;
// This class is just a big hack to find form elements even in malformed HTML elements.
// The famous <table><tr><form><td> problem.
-class HTMLFormControlsCollection FINAL : public HTMLCollection {
+class HTMLFormControlsCollection final : public HTMLCollection {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> create(ContainerNode&, CollectionType);
@@ -45,21 +45,21 @@ public:
HTMLElement* item(unsigned offset) const { return toHTMLElement(HTMLCollection::item(offset)); }
- virtual HTMLElement* namedItem(const AtomicString& name) const OVERRIDE;
+ virtual HTMLElement* namedItem(const AtomicString& name) const override;
void namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<RadioNodeList>&, RefPtrWillBeRawPtr<Element>&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit HTMLFormControlsCollection(ContainerNode&);
- virtual void updateIdNameCache() const OVERRIDE;
- virtual void supportedPropertyNames(Vector<String>& names) OVERRIDE;
+ virtual void updateIdNameCache() const override;
+ virtual void supportedPropertyNames(Vector<String>& names) override;
const FormAssociatedElement::List& formControlElements() const;
const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& formImageElements() const;
- virtual HTMLElement* virtualItemAfter(Element*) const OVERRIDE;
- virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE;
+ virtual HTMLElement* virtualItemAfter(Element*) const override;
+ virtual void invalidateCache(Document* oldDocument = 0) const override;
mutable RawPtrWillBeMember<HTMLElement> m_cachedElement;
mutable unsigned m_cachedElementOffsetInArray;
« no previous file with comments | « Source/core/html/HTMLFormControlElementWithState.h ('k') | Source/core/html/HTMLFormElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698