| 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 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2006, 2010, 2011 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2006, 2010, 2011 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "platform/fonts/Font.h" | 25 #include "platform/fonts/Font.h" |
| 26 | 26 |
| 27 #include "platform/LayoutUnit.h" | 27 #include "platform/LayoutUnit.h" |
| 28 #include "platform/RuntimeEnabledFeatures.h" | 28 #include "platform/RuntimeEnabledFeatures.h" |
| 29 #include "platform/fonts/Character.h" | 29 #include "platform/fonts/Character.h" |
| 30 #include "platform/fonts/FontCache.h" | 30 #include "platform/fonts/FontCache.h" |
| 31 #include "platform/fonts/FontFallbackList.h" | 31 #include "platform/fonts/FontFallbackList.h" |
| 32 #include "platform/fonts/FontPlatformFeatures.h" | |
| 33 #include "platform/fonts/GlyphBuffer.h" | 32 #include "platform/fonts/GlyphBuffer.h" |
| 34 #include "platform/fonts/GlyphPageTreeNode.h" | 33 #include "platform/fonts/GlyphPageTreeNode.h" |
| 35 #include "platform/fonts/SimpleFontData.h" | 34 #include "platform/fonts/SimpleFontData.h" |
| 36 #include "platform/fonts/SimpleShaper.h" | 35 #include "platform/fonts/SimpleShaper.h" |
| 37 #include "platform/geometry/FloatRect.h" | 36 #include "platform/geometry/FloatRect.h" |
| 38 #include "platform/graphics/GraphicsContext.h" | 37 #include "platform/graphics/GraphicsContext.h" |
| 39 #include "platform/text/TextRun.h" | 38 #include "platform/text/TextRun.h" |
| 40 #include "wtf/MainThread.h" | 39 #include "wtf/MainThread.h" |
| 41 #include "wtf/StdLibExtras.h" | 40 #include "wtf/StdLibExtras.h" |
| 42 #include "wtf/unicode/CharacterNames.h" | 41 #include "wtf/unicode/CharacterNames.h" |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 if (delta <= 0) | 898 if (delta <= 0) |
| 900 break; | 899 break; |
| 901 } | 900 } |
| 902 } | 901 } |
| 903 } | 902 } |
| 904 | 903 |
| 905 return offset; | 904 return offset; |
| 906 } | 905 } |
| 907 | 906 |
| 908 } // namespace blink | 907 } // namespace blink |
| OLD | NEW |