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

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

Issue 126713004: Remove Node.prefix so it's no longer visible to script. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove spurious OVERRIDE. Created 6 years, 11 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 | « LayoutTests/fast/dom/Node/script-tests/initial-values.js ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Attr.h
diff --git a/Source/core/dom/Attr.h b/Source/core/dom/Attr.h
index 604b3abc1917a77ea8a1d2751ce77cbd4217ccfe..c5103520c2cf5191f7b8b3d2782cf036b4e2aca0 100644
--- a/Source/core/dom/Attr.h
+++ b/Source/core/dom/Attr.h
@@ -63,9 +63,9 @@ public:
virtual const AtomicString& localName() const OVERRIDE { return m_name.localName(); }
virtual const AtomicString& namespaceURI() const OVERRIDE { return m_name.namespaceURI(); }
- virtual const AtomicString& prefix() const OVERRIDE { return m_name.prefix(); }
+ virtual const AtomicString& prefix() const OVERRIDE FINAL { return m_name.prefix(); }
- virtual void setPrefix(const AtomicString&, ExceptionState&) OVERRIDE;
+ void setPrefix(const AtomicString&, ExceptionState&);
private:
Attr(Element&, const QualifiedName&);
« no previous file with comments | « LayoutTests/fast/dom/Node/script-tests/initial-values.js ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698