OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * (C) 2000 Dirk Mueller (mueller@kde.org) |
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 void checkConsistency() const; | 131 void checkConsistency() const; |
132 | 132 |
133 bool isAllCollapsibleWhitespace(); | 133 bool isAllCollapsibleWhitespace(); |
134 | 134 |
135 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; } | 135 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; } |
136 bool knownToHaveNoOverflowAndNoFallbackFonts() const { return m_knownToHaveN
oOverflowAndNoFallbackFonts; } | 136 bool knownToHaveNoOverflowAndNoFallbackFonts() const { return m_knownToHaveN
oOverflowAndNoFallbackFonts; } |
137 | 137 |
138 void removeAndDestroyTextBoxes(); | 138 void removeAndDestroyTextBoxes(); |
139 | 139 |
140 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE FINAL; | |
141 | |
142 protected: | 140 protected: |
143 virtual void computePreferredLogicalWidths(float leadWidth); | 141 virtual void computePreferredLogicalWidths(float leadWidth); |
144 virtual void willBeDestroyed(); | 142 virtual void willBeDestroyed(); |
145 | 143 |
146 virtual void styleWillChange(StyleDifference, const RenderStyle*) OVERRIDE F
INAL { } | 144 virtual void styleWillChange(StyleDifference, const RenderStyle*) OVERRIDE F
INAL { } |
147 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle); | 145 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle); |
148 | 146 |
149 virtual void setTextInternal(PassRefPtr<StringImpl>); | 147 virtual void setTextInternal(PassRefPtr<StringImpl>); |
150 virtual UChar previousCharacter() const; | 148 virtual UChar previousCharacter() const; |
151 | 149 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 inline void RenderText::checkConsistency() const | 217 inline void RenderText::checkConsistency() const |
220 { | 218 { |
221 } | 219 } |
222 #endif | 220 #endif |
223 | 221 |
224 void applyTextTransform(const RenderStyle*, String&, UChar); | 222 void applyTextTransform(const RenderStyle*, String&, UChar); |
225 | 223 |
226 } // namespace WebCore | 224 } // namespace WebCore |
227 | 225 |
228 #endif // RenderText_h | 226 #endif // RenderText_h |
OLD | NEW |