| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. |
| 3 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com | 3 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com |
| 4 * Copyright (C) 2007 Holger Hans Peter Freyther | 4 * Copyright (C) 2007 Holger Hans Peter Freyther |
| 5 * Copyright (C) 2007 Pioneer Research Center USA, Inc. | 5 * Copyright (C) 2007 Pioneer Research Center USA, Inc. |
| 6 * Copyright (C) 2010, 2011 Brent Fulgham <bfulgham@webkit.org> | 6 * Copyright (C) 2010, 2011 Brent Fulgham <bfulgham@webkit.org> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include <objc/objc-auto.h> | 46 #include <objc/objc-auto.h> |
| 47 #endif | 47 #endif |
| 48 | 48 |
| 49 #include <wtf/Forward.h> | 49 #include <wtf/Forward.h> |
| 50 #include <wtf/PassRefPtr.h> | 50 #include <wtf/PassRefPtr.h> |
| 51 #include <wtf/RefCounted.h> | 51 #include <wtf/RefCounted.h> |
| 52 #include <wtf/RetainPtr.h> | 52 #include <wtf/RetainPtr.h> |
| 53 #include <wtf/text/StringImpl.h> | 53 #include <wtf/text/StringImpl.h> |
| 54 | 54 |
| 55 #if OS(DARWIN) | 55 #if OS(DARWIN) |
| 56 #include "CrossProcessFontLoading.h" | 56 #include "core/platform/graphics/chromium/CrossProcessFontLoading.h" |
| 57 #endif | 57 #endif |
| 58 | 58 |
| 59 #if USE(SKIA_ON_MAC_CHROMIUM) | 59 #if USE(SKIA_ON_MAC_CHROMIUM) |
| 60 typedef struct CGFont* CGFontRef; | 60 typedef struct CGFont* CGFontRef; |
| 61 #if OS(DARWIN) | 61 #if OS(DARWIN) |
| 62 typedef const struct __CTFont* CTFontRef; | 62 typedef const struct __CTFont* CTFontRef; |
| 63 typedef UInt32 FMFont; | 63 typedef UInt32 FMFont; |
| 64 typedef FMFont ATSUFontID; | 64 typedef FMFont ATSUFontID; |
| 65 typedef UInt32 ATSFontRef; | 65 typedef UInt32 ATSFontRef; |
| 66 #endif | 66 #endif |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 #if OS(DARWIN) | 214 #if OS(DARWIN) |
| 215 bool m_isPrinterFont; | 215 bool m_isPrinterFont; |
| 216 #endif | 216 #endif |
| 217 }; | 217 }; |
| 218 | 218 |
| 219 } // namespace WebCore | 219 } // namespace WebCore |
| 220 | 220 |
| 221 #endif // FontPlatformData_h | 221 #endif // FontPlatformData_h |
| 222 | 222 |
| 223 #endif | 223 #endif |
| OLD | NEW |