| 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 |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 // FIXME: This is temporary until all ports switch to using this file. | 25 // FIXME: This is temporary until all ports switch to using this file. |
| 26 #if (PLATFORM(CHROMIUM) && !OS(DARWIN)) || PLATFORM(BLACKBERRY) | 26 #if (PLATFORM(CHROMIUM) && !OS(DARWIN)) |
| 27 #include "chromium/FontPlatformData.h" | 27 #include "chromium/FontPlatformData.h" |
| 28 #elif PLATFORM(QT) | 28 #elif PLATFORM(QT) |
| 29 #include "qt/FontPlatformData.h" | 29 #include "qt/FontPlatformData.h" |
| 30 #elif PLATFORM(WIN) && OS(WINCE) | 30 #elif PLATFORM(WIN) && OS(WINCE) |
| 31 #include "wince/FontPlatformData.h" | 31 #include "wince/FontPlatformData.h" |
| 32 #elif PLATFORM(GTK) | 32 #elif PLATFORM(GTK) |
| 33 #include "freetype/FontPlatformData.h" | 33 #include "freetype/FontPlatformData.h" |
| 34 #else | 34 #else |
| 35 | 35 |
| 36 #ifndef FontPlatformData_h | 36 #ifndef FontPlatformData_h |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 #if PLATFORM(WIN) | 254 #if PLATFORM(WIN) |
| 255 bool m_useGDI; | 255 bool m_useGDI; |
| 256 #endif | 256 #endif |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace WebCore | 259 } // namespace WebCore |
| 260 | 260 |
| 261 #endif // FontPlatformData_h | 261 #endif // FontPlatformData_h |
| 262 | 262 |
| 263 #endif | 263 #endif |
| OLD | NEW |