| Index: Source/core/dom/Text.h
|
| diff --git a/Source/core/dom/Text.h b/Source/core/dom/Text.h
|
| index a4d7b1aa1188bf54d17822acc6aeca09ef874c28..f1bd608956ef6d86234b43a746dc18170934db2a 100644
|
| --- a/Source/core/dom/Text.h
|
| +++ b/Source/core/dom/Text.h
|
| @@ -50,10 +50,10 @@ public:
|
| RenderText* createTextRenderer(RenderArena*, RenderStyle*);
|
| void updateTextRenderer(unsigned offsetOfReplacedData, unsigned lengthOfReplacedData);
|
|
|
| - virtual void attach();
|
| + virtual void attach() OVERRIDE FINAL;
|
|
|
| - virtual bool canContainRangeEndPoint() const { return true; }
|
| - virtual NodeType nodeType() const;
|
| + virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return true; }
|
| + virtual NodeType nodeType() const OVERRIDE;
|
|
|
| protected:
|
| Text(Document* document, const String& data, ConstructionType type)
|
| @@ -63,9 +63,9 @@ protected:
|
| }
|
|
|
| private:
|
| - virtual String nodeName() const;
|
| - virtual PassRefPtr<Node> cloneNode(bool deep);
|
| - virtual bool childTypeAllowed(NodeType) const;
|
| + virtual String nodeName() const OVERRIDE;
|
| + virtual PassRefPtr<Node> cloneNode(bool deep) OVERRIDE;
|
| + virtual bool childTypeAllowed(NodeType) const OVERRIDE;
|
|
|
| virtual PassRefPtr<Text> virtualCreate(const String&);
|
|
|
|
|