| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2006, 2007, 2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2006, 2007, 2008, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #define FontPlatformData_h | 32 #define FontPlatformData_h |
| 33 | 33 |
| 34 #include "SkPaint.h" | 34 #include "SkPaint.h" |
| 35 #include "SkTypeface.h" | 35 #include "SkTypeface.h" |
| 36 #include "platform/PlatformExport.h" | 36 #include "platform/PlatformExport.h" |
| 37 #include "platform/SharedBuffer.h" | 37 #include "platform/SharedBuffer.h" |
| 38 #include "platform/fonts/FontDescription.h" | 38 #include "platform/fonts/FontDescription.h" |
| 39 #include "platform/fonts/FontOrientation.h" | 39 #include "platform/fonts/FontOrientation.h" |
| 40 #include "platform/fonts/SmallCapsIterator.h" | 40 #include "platform/fonts/SmallCapsIterator.h" |
| 41 #include "platform/fonts/opentype/OpenTypeVerticalData.h" | 41 #include "platform/fonts/opentype/OpenTypeVerticalData.h" |
| 42 #include "platform/wtf/Allocator.h" |
| 43 #include "platform/wtf/Forward.h" |
| 44 #include "platform/wtf/HashTableDeletedValueType.h" |
| 45 #include "platform/wtf/RefPtr.h" |
| 46 #include "platform/wtf/text/CString.h" |
| 47 #include "platform/wtf/text/StringImpl.h" |
| 42 #include "third_party/skia/include/core/SkRefCnt.h" | 48 #include "third_party/skia/include/core/SkRefCnt.h" |
| 43 #include "wtf/Allocator.h" | |
| 44 #include "wtf/Forward.h" | |
| 45 #include "wtf/HashTableDeletedValueType.h" | |
| 46 #include "wtf/RefPtr.h" | |
| 47 #include "wtf/text/CString.h" | |
| 48 #include "wtf/text/StringImpl.h" | |
| 49 | 49 |
| 50 #if OS(LINUX) || OS(ANDROID) | 50 #if OS(LINUX) || OS(ANDROID) |
| 51 #include "platform/fonts/linux/FontRenderStyle.h" | 51 #include "platform/fonts/linux/FontRenderStyle.h" |
| 52 #endif // OS(LINUX) || OS(ANDROID) | 52 #endif // OS(LINUX) || OS(ANDROID) |
| 53 | 53 |
| 54 #if OS(MACOSX) | 54 #if OS(MACOSX) |
| 55 OBJC_CLASS NSFont; | 55 OBJC_CLASS NSFont; |
| 56 | 56 |
| 57 typedef struct CGFont* CGFontRef; | 57 typedef struct CGFont* CGFontRef; |
| 58 typedef const struct __CTFont* CTFontRef; | 58 typedef const struct __CTFont* CTFontRef; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace; | 180 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace; |
| 181 bool m_isHashTableDeletedValue; | 181 bool m_isHashTableDeletedValue; |
| 182 #if OS(WIN) | 182 #if OS(WIN) |
| 183 int m_paintTextFlags; | 183 int m_paintTextFlags; |
| 184 #endif | 184 #endif |
| 185 }; | 185 }; |
| 186 | 186 |
| 187 } // namespace blink | 187 } // namespace blink |
| 188 | 188 |
| 189 #endif // ifdef FontPlatformData_h | 189 #endif // ifdef FontPlatformData_h |
| OLD | NEW |