| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2013 Apple Inc. All rights reserved. |
| 3 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef GlyphPage_h | 30 #ifndef GlyphPage_h |
| 31 #define GlyphPage_h | 31 #define GlyphPage_h |
| 32 | 32 |
| 33 #include "platform/PlatformExport.h" | 33 #include "platform/PlatformExport.h" |
| 34 #include "platform/fonts/CustomFontData.h" | 34 #include "platform/fonts/CustomFontData.h" |
| 35 #include "platform/fonts/Glyph.h" | 35 #include "platform/fonts/Glyph.h" |
| 36 #include "wtf/Allocator.h" | 36 #include "wtf/Allocator.h" |
| 37 #include "wtf/Partitions.h" | |
| 38 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 40 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 #include "wtf/allocator/Partitions.h" |
| 41 #include "wtf/text/Unicode.h" | 41 #include "wtf/text/Unicode.h" |
| 42 #include <string.h> | 42 #include <string.h> |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class SimpleFontData; | 46 class SimpleFontData; |
| 47 class GlyphPageTreeNodeBase; | 47 class GlyphPageTreeNodeBase; |
| 48 | 48 |
| 49 // Holds the glyph index and the corresponding SimpleFontData information for a
given | 49 // Holds the glyph index and the corresponding SimpleFontData information for a
given |
| 50 // character. | 50 // character. |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 const SimpleFontData* m_perGlyphFontData[0]; | 221 const SimpleFontData* m_perGlyphFontData[0]; |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 #if COMPILER(MSVC) | 224 #if COMPILER(MSVC) |
| 225 #pragma warning(pop) | 225 #pragma warning(pop) |
| 226 #endif | 226 #endif |
| 227 | 227 |
| 228 } // namespace blink | 228 } // namespace blink |
| 229 | 229 |
| 230 #endif // GlyphPage_h | 230 #endif // GlyphPage_h |
| OLD | NEW |