| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 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, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 7 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef FontDescription_h | 26 #ifndef FontDescription_h |
| 27 #define FontDescription_h | 27 #define FontDescription_h |
| 28 | 28 |
| 29 #include "SkFontStyle.h" | 29 #include "SkFontStyle.h" |
| 30 #include "platform/FontFamilyNames.h" | 30 #include "platform/FontFamilyNames.h" |
| 31 #include "platform/LayoutLocale.h" | 31 #include "platform/LayoutLocale.h" |
| 32 #include "platform/fonts/FontCacheKey.h" | 32 #include "platform/fonts/FontCacheKey.h" |
| 33 #include "platform/fonts/FontFamily.h" | 33 #include "platform/fonts/FontFamily.h" |
| 34 #include "platform/fonts/FontFeatureSettings.h" | |
| 35 #include "platform/fonts/FontOrientation.h" | 34 #include "platform/fonts/FontOrientation.h" |
| 36 #include "platform/fonts/FontSmoothingMode.h" | 35 #include "platform/fonts/FontSmoothingMode.h" |
| 37 #include "platform/fonts/FontTraits.h" | 36 #include "platform/fonts/FontTraits.h" |
| 38 #include "platform/fonts/FontVariantNumeric.h" | 37 #include "platform/fonts/FontVariantNumeric.h" |
| 39 #include "platform/fonts/FontWidthVariant.h" | 38 #include "platform/fonts/FontWidthVariant.h" |
| 40 #include "platform/fonts/TextRenderingMode.h" | 39 #include "platform/fonts/TextRenderingMode.h" |
| 41 #include "platform/fonts/TypesettingFeatures.h" | 40 #include "platform/fonts/TypesettingFeatures.h" |
| 41 #include "platform/fonts/opentype/FontSettings.h" |
| 42 #include "wtf/Allocator.h" | 42 #include "wtf/Allocator.h" |
| 43 #include "wtf/MathExtras.h" | 43 #include "wtf/MathExtras.h" |
| 44 | 44 |
| 45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
| 46 | 46 |
| 47 #include <unicode/uscript.h> | 47 #include <unicode/uscript.h> |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 const float FontSizeAdjustNone = -1; | 51 const float FontSizeAdjustNone = -1; |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 }; | 383 }; |
| 384 | 384 |
| 385 static TypesettingFeatures s_defaultTypesettingFeatures; | 385 static TypesettingFeatures s_defaultTypesettingFeatures; |
| 386 | 386 |
| 387 static bool s_useSubpixelTextPositioning; | 387 static bool s_useSubpixelTextPositioning; |
| 388 }; | 388 }; |
| 389 | 389 |
| 390 } // namespace blink | 390 } // namespace blink |
| 391 | 391 |
| 392 #endif | 392 #endif |
| OLD | NEW |