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

Unified Diff: Source/core/dom/Element.h

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. Created 7 years, 8 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/dom/DocumentType.h ('k') | Source/core/dom/EntityReference.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index e2a2b1b8f7d994aab87cef43d1404dde06cea2c5..150d27ffd1367b507c6ef5cc1f5b9642265126e6 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -359,7 +359,7 @@ public:
const AtomicString& prefix() const { return m_tagName.prefix(); }
const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); }
- virtual KURL baseURI() const;
+ virtual KURL baseURI() const OVERRIDE FINAL;
virtual String nodeName() const;
@@ -494,7 +494,7 @@ public:
bool isFinishedParsingChildren() const { return isParsingChildrenFinished(); }
virtual void finishParsingChildren();
- virtual void beginParsingChildren();
+ virtual void beginParsingChildren() OVERRIDE FINAL;
bool hasPseudoElements() const;
PseudoElement* pseudoElement(PseudoId) const;
@@ -615,8 +615,8 @@ protected:
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
virtual void removedFrom(ContainerNode*) OVERRIDE;
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
- virtual void removeAllEventListeners() OVERRIDE;
+ virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
+ virtual void removeAllEventListeners() OVERRIDE FINAL;
virtual bool willRecalcStyle(StyleChange);
virtual void didRecalcStyle(StyleChange);
@@ -667,9 +667,9 @@ private:
void scrollByUnits(int units, ScrollGranularity);
- virtual void setPrefix(const AtomicString&, ExceptionCode&);
- virtual NodeType nodeType() const;
- virtual bool childTypeAllowed(NodeType) const;
+ virtual void setPrefix(const AtomicString&, ExceptionCode&) OVERRIDE FINAL;
+ virtual NodeType nodeType() const OVERRIDE FINAL;
+ virtual bool childTypeAllowed(NodeType) const OVERRIDE FINAL;
void setAttributeInternal(size_t index, const QualifiedName&, const AtomicString& value, SynchronizationOfLazyAttribute);
void addAttributeInternal(const QualifiedName&, const AtomicString& value, SynchronizationOfLazyAttribute);
@@ -684,9 +684,9 @@ private:
void cancelFocusAppearanceUpdate();
- virtual const AtomicString& virtualPrefix() const { return prefix(); }
- virtual const AtomicString& virtualLocalName() const { return localName(); }
- virtual const AtomicString& virtualNamespaceURI() const { return namespaceURI(); }
+ virtual const AtomicString& virtualPrefix() const OVERRIDE FINAL { return prefix(); }
+ virtual const AtomicString& virtualLocalName() const OVERRIDE FINAL { return localName(); }
+ virtual const AtomicString& virtualNamespaceURI() const OVERRIDE FINAL { return namespaceURI(); }
virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return computedStyle(pseudoElementSpecifier); }
// cloneNode is private so that non-virtual cloneElementWithChildren and cloneElementWithoutChildren
« no previous file with comments | « Source/core/dom/DocumentType.h ('k') | Source/core/dom/EntityReference.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698