| 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-2009, 2013 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004-2009, 2013 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 // TODO(eae): Rename and change to only handle the word measurements use | 173 // TODO(eae): Rename and change to only handle the word measurements use |
| 174 // case once the simple code path has been removed. crbug.com/404597 | 174 // case once the simple code path has been removed. crbug.com/404597 |
| 175 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; } | 175 bool canUseSimpleFontCodePath() const { return m_canUseSimpleFontCodePath; } |
| 176 | 176 |
| 177 void removeAndDestroyTextBoxes(); | 177 void removeAndDestroyTextBoxes(); |
| 178 | 178 |
| 179 PassRefPtr<AbstractInlineTextBox> firstAbstractInlineTextBox(); | 179 PassRefPtr<AbstractInlineTextBox> firstAbstractInlineTextBox(); |
| 180 | 180 |
| 181 float hyphenWidth(const Font&, TextDirection); | 181 float hyphenWidth(const Font&, TextDirection); |
| 182 | 182 |
| 183 void applyTextTransformFromTo(int from, int len, const ComputedStyle*); | |
| 184 protected: | 183 protected: |
| 185 void willBeDestroyed() override; | 184 void willBeDestroyed() override; |
| 186 | 185 |
| 187 void styleWillChange(StyleDifference, const ComputedStyle&) final { } | 186 void styleWillChange(StyleDifference, const ComputedStyle&) final { } |
| 188 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; | 187 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; |
| 189 | 188 |
| 190 virtual void setTextInternal(PassRefPtr<StringImpl>); | 189 virtual void setTextInternal(PassRefPtr<StringImpl>); |
| 191 virtual UChar previousCharacter() const; | 190 virtual UChar previousCharacter() const; |
| 192 | 191 |
| 193 void addLayerHitTestRects(LayerHitTestRects&, const PaintLayer* currentLayer
, const LayoutPoint& layerOffset, const LayoutRect& containerRect) const overrid
e; | 192 void addLayerHitTestRects(LayerHitTestRects&, const PaintLayer* currentLayer
, const LayoutPoint& layerOffset, const LayoutRect& containerRect) const overrid
e; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 inline LayoutText* Text::layoutObject() const | 292 inline LayoutText* Text::layoutObject() const |
| 294 { | 293 { |
| 295 return toLayoutText(CharacterData::layoutObject()); | 294 return toLayoutText(CharacterData::layoutObject()); |
| 296 } | 295 } |
| 297 | 296 |
| 298 void applyTextTransform(const ComputedStyle*, String&, UChar); | 297 void applyTextTransform(const ComputedStyle*, String&, UChar); |
| 299 | 298 |
| 300 } // namespace blink | 299 } // namespace blink |
| 301 | 300 |
| 302 #endif // LayoutText_h | 301 #endif // LayoutText_h |
| OLD | NEW |