| 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 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef LayoutText_h | 23 #ifndef LayoutText_h |
| 24 #define LayoutText_h | 24 #define LayoutText_h |
| 25 | 25 |
| 26 #include "core/CoreExport.h" | 26 #include "core/CoreExport.h" |
| 27 #include "core/dom/Text.h" | 27 #include "core/dom/Text.h" |
| 28 #include "core/layout/LayoutObject.h" | 28 #include "core/layout/LayoutObject.h" |
| 29 #include "core/layout/TextRunConstructor.h" | 29 #include "core/layout/TextRunConstructor.h" |
| 30 #include "platform/LengthFunctions.h" | 30 #include "platform/LengthFunctions.h" |
| 31 #include "platform/text/TextPath.h" | |
| 32 #include "wtf/Forward.h" | 31 #include "wtf/Forward.h" |
| 33 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
| 34 | 33 |
| 35 namespace blink { | 34 namespace blink { |
| 36 | 35 |
| 37 class AbstractInlineTextBox; | 36 class AbstractInlineTextBox; |
| 38 class InlineTextBox; | 37 class InlineTextBox; |
| 39 | 38 |
| 40 // LayoutText is the root class for anything that represents | 39 // LayoutText is the root class for anything that represents |
| 41 // a text node (see core/dom/Text.h). | 40 // a text node (see core/dom/Text.h). |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 | 355 |
| 357 inline LayoutText* Text::layoutObject() const { | 356 inline LayoutText* Text::layoutObject() const { |
| 358 return toLayoutText(CharacterData::layoutObject()); | 357 return toLayoutText(CharacterData::layoutObject()); |
| 359 } | 358 } |
| 360 | 359 |
| 361 void applyTextTransform(const ComputedStyle*, String&, UChar); | 360 void applyTextTransform(const ComputedStyle*, String&, UChar); |
| 362 | 361 |
| 363 } // namespace blink | 362 } // namespace blink |
| 364 | 363 |
| 365 #endif // LayoutText_h | 364 #endif // LayoutText_h |
| OLD | NEW |