OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 String wholeText() const; | 44 String wholeText() const; |
45 PassRefPtr<Text> replaceWholeText(const String&, ExceptionCode&); | 45 PassRefPtr<Text> replaceWholeText(const String&, ExceptionCode&); |
46 | 46 |
47 void recalcTextStyle(StyleChange); | 47 void recalcTextStyle(StyleChange); |
48 void createTextRendererIfNeeded(); | 48 void createTextRendererIfNeeded(); |
49 bool textRendererIsNeeded(const NodeRenderingContext&); | 49 bool textRendererIsNeeded(const NodeRenderingContext&); |
50 RenderText* createTextRenderer(RenderArena*, RenderStyle*); | 50 RenderText* createTextRenderer(RenderArena*, RenderStyle*); |
51 void updateTextRenderer(unsigned offsetOfReplacedData, unsigned lengthOfRepl
acedData); | 51 void updateTextRenderer(unsigned offsetOfReplacedData, unsigned lengthOfRepl
acedData); |
52 | 52 |
53 virtual void attach(); | 53 virtual void attach() OVERRIDE FINAL; |
54 | 54 |
55 virtual bool canContainRangeEndPoint() const { return true; } | 55 virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return true; } |
56 virtual NodeType nodeType() const; | 56 virtual NodeType nodeType() const OVERRIDE; |
57 | 57 |
58 protected: | 58 protected: |
59 Text(Document* document, const String& data, ConstructionType type) | 59 Text(Document* document, const String& data, ConstructionType type) |
60 : CharacterData(document, data, type) | 60 : CharacterData(document, data, type) |
61 { | 61 { |
62 ScriptWrappable::init(this); | 62 ScriptWrappable::init(this); |
63 } | 63 } |
64 | 64 |
65 private: | 65 private: |
66 virtual String nodeName() const; | 66 virtual String nodeName() const OVERRIDE; |
67 virtual PassRefPtr<Node> cloneNode(bool deep); | 67 virtual PassRefPtr<Node> cloneNode(bool deep) OVERRIDE; |
68 virtual bool childTypeAllowed(NodeType) const; | 68 virtual bool childTypeAllowed(NodeType) const OVERRIDE; |
69 | 69 |
70 virtual PassRefPtr<Text> virtualCreate(const String&); | 70 virtual PassRefPtr<Text> virtualCreate(const String&); |
71 | 71 |
72 #ifndef NDEBUG | 72 #ifndef NDEBUG |
73 virtual void formatForDebugger(char* buffer, unsigned length) const; | 73 virtual void formatForDebugger(char* buffer, unsigned length) const; |
74 #endif | 74 #endif |
75 }; | 75 }; |
76 | 76 |
77 inline Text* toText(Node* node) | 77 inline Text* toText(Node* node) |
78 { | 78 { |
79 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isTextNode()); | 79 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isTextNode()); |
80 return static_cast<Text*>(node); | 80 return static_cast<Text*>(node); |
81 } | 81 } |
82 | 82 |
83 } // namespace WebCore | 83 } // namespace WebCore |
84 | 84 |
85 #endif // Text_h | 85 #endif // Text_h |
OLD | NEW |