| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef CSSSegmentedFontFace_h | 26 #ifndef CSSSegmentedFontFace_h |
| 27 #define CSSSegmentedFontFace_h | 27 #define CSSSegmentedFontFace_h |
| 28 | 28 |
| 29 #include <wtf/HashMap.h> | 29 #include <wtf/HashMap.h> |
| 30 #include <wtf/PassRefPtr.h> | 30 #include <wtf/PassRefPtr.h> |
| 31 #include <wtf/RefCounted.h> | 31 #include <wtf/RefCounted.h> |
| 32 #include <wtf/Vector.h> | 32 #include <wtf/Vector.h> |
| 33 #include <wtf/unicode/Unicode.h> | |
| 34 | 33 |
| 35 namespace WebCore { | 34 namespace WebCore { |
| 36 | 35 |
| 37 class CSSFontFace; | 36 class CSSFontFace; |
| 38 class CSSFontSelector; | 37 class CSSFontSelector; |
| 39 class FontData; | 38 class FontData; |
| 40 class FontDescription; | 39 class FontDescription; |
| 41 class SegmentedFontData; | 40 class SegmentedFontData; |
| 42 | 41 |
| 43 class CSSSegmentedFontFace : public RefCounted<CSSSegmentedFontFace> { | 42 class CSSSegmentedFontFace : public RefCounted<CSSSegmentedFontFace> { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 72 | 71 |
| 73 CSSFontSelector* m_fontSelector; | 72 CSSFontSelector* m_fontSelector; |
| 74 HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable; | 73 HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable; |
| 75 Vector<RefPtr<CSSFontFace>, 1> m_fontFaces; | 74 Vector<RefPtr<CSSFontFace>, 1> m_fontFaces; |
| 76 Vector<RefPtr<LoadFontCallback> > m_callbacks; | 75 Vector<RefPtr<LoadFontCallback> > m_callbacks; |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 } // namespace WebCore | 78 } // namespace WebCore |
| 80 | 79 |
| 81 #endif // CSSSegmentedFontFace_h | 80 #endif // CSSSegmentedFontFace_h |
| OLD | NEW |