| 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 21 matching lines...) Expand all Loading... |
| 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/FontOrientation.h" | 34 #include "platform/fonts/FontOrientation.h" |
| 35 #include "platform/fonts/FontSmoothingMode.h" | 35 #include "platform/fonts/FontSmoothingMode.h" |
| 36 #include "platform/fonts/FontTraits.h" | 36 #include "platform/fonts/FontTraits.h" |
| 37 #include "platform/fonts/FontVariantNumeric.h" | 37 #include "platform/fonts/FontVariantNumeric.h" |
| 38 #include "platform/fonts/FontWidthVariant.h" | 38 #include "platform/fonts/FontWidthVariant.h" |
| 39 #include "platform/fonts/TextRenderingMode.h" | 39 #include "platform/fonts/TextRenderingMode.h" |
| 40 #include "platform/fonts/TypesettingFeatures.h" | 40 #include "platform/fonts/TypesettingFeatures.h" |
| 41 #include "platform/fonts/opentype/FontSettings.h" | 41 #include "platform/fonts/opentype/FontSettings.h" |
| 42 #include "wtf/Allocator.h" | 42 #include "platform/wtf/Allocator.h" |
| 43 #include "wtf/MathExtras.h" | 43 #include "platform/wtf/MathExtras.h" |
| 44 | 44 |
| 45 #include "wtf/RefPtr.h" | 45 #include "platform/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; |
| 52 typedef struct { uint32_t parts[2]; } FieldsAsUnsignedType; | 52 typedef struct { uint32_t parts[2]; } FieldsAsUnsignedType; |
| 53 | 53 |
| 54 class PLATFORM_EXPORT FontDescription { | 54 class PLATFORM_EXPORT FontDescription { |
| 55 USING_FAST_MALLOC(FontDescription); | 55 USING_FAST_MALLOC(FontDescription); |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 }; | 392 }; |
| 393 | 393 |
| 394 static TypesettingFeatures s_defaultTypesettingFeatures; | 394 static TypesettingFeatures s_defaultTypesettingFeatures; |
| 395 | 395 |
| 396 static bool s_useSubpixelTextPositioning; | 396 static bool s_useSubpixelTextPositioning; |
| 397 }; | 397 }; |
| 398 | 398 |
| 399 } // namespace blink | 399 } // namespace blink |
| 400 | 400 |
| 401 #endif | 401 #endif |
| OLD | NEW |