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

Unified Diff: Source/core/dom/CharacterData.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/CDATASection.h ('k') | Source/core/dom/Comment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CharacterData.h
diff --git a/Source/core/dom/CharacterData.h b/Source/core/dom/CharacterData.h
index cce9f56973861042da1819151797f3e3dda71ce4..764398b2788d98dd1818950eb5425fc8edb0e206 100644
--- a/Source/core/dom/CharacterData.h
+++ b/Source/core/dom/CharacterData.h
@@ -66,11 +66,11 @@ protected:
void dispatchModifiedEvent(const String& oldValue);
private:
- virtual String nodeValue() const;
- virtual void setNodeValue(const String&, ExceptionCode&);
- virtual bool isCharacterDataNode() const { return true; }
- virtual int maxCharacterOffset() const;
- virtual bool offsetInCharacters() const;
+ virtual String nodeValue() const OVERRIDE FINAL;
+ virtual void setNodeValue(const String&, ExceptionCode&) OVERRIDE FINAL;
+ virtual bool isCharacterDataNode() const OVERRIDE FINAL { return true; }
+ virtual int maxCharacterOffset() const OVERRIDE FINAL;
+ virtual bool offsetInCharacters() const OVERRIDE FINAL;
void setDataAndUpdate(const String&, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength);
void checkCharDataOperation(unsigned offset, ExceptionCode&);
« no previous file with comments | « Source/core/dom/CDATASection.h ('k') | Source/core/dom/Comment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698