| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef CSSFontFace_h | 26 #ifndef CSSFontFace_h |
| 27 #define CSSFontFace_h | 27 #define CSSFontFace_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/css/CSSFontFaceSource.h" | 30 #include "core/css/CSSFontFaceSource.h" |
| 31 #include "core/css/CSSSegmentedFontFace.h" | 31 #include "core/css/CSSSegmentedFontFace.h" |
| 32 #include "core/css/FontFace.h" | 32 #include "core/css/FontFace.h" |
| 33 #include "platform/fonts/SegmentedFontData.h" | 33 #include "platform/fonts/SegmentedFontData.h" |
| 34 #include "platform/fonts/UnicodeRangeSet.h" | 34 #include "platform/fonts/UnicodeRangeSet.h" |
| 35 #include "wtf/Deque.h" | 35 #include "platform/wtf/Deque.h" |
| 36 #include "wtf/Forward.h" | 36 #include "platform/wtf/Forward.h" |
| 37 #include "wtf/PassRefPtr.h" | 37 #include "platform/wtf/PassRefPtr.h" |
| 38 #include "wtf/Vector.h" | 38 #include "platform/wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class FontDescription; | 42 class FontDescription; |
| 43 class RemoteFontFaceSource; | 43 class RemoteFontFaceSource; |
| 44 class SimpleFontData; | 44 class SimpleFontData; |
| 45 | 45 |
| 46 class CORE_EXPORT CSSFontFace final | 46 class CORE_EXPORT CSSFontFace final |
| 47 : public GarbageCollectedFinalized<CSSFontFace> { | 47 : public GarbageCollectedFinalized<CSSFontFace> { |
| 48 WTF_MAKE_NONCOPYABLE(CSSFontFace); | 48 WTF_MAKE_NONCOPYABLE(CSSFontFace); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 RefPtr<UnicodeRangeSet> ranges_; | 91 RefPtr<UnicodeRangeSet> ranges_; |
| 92 Member<CSSSegmentedFontFace> segmented_font_face_; | 92 Member<CSSSegmentedFontFace> segmented_font_face_; |
| 93 HeapDeque<Member<CSSFontFaceSource>> sources_; | 93 HeapDeque<Member<CSSFontFaceSource>> sources_; |
| 94 Member<FontFace> font_face_; | 94 Member<FontFace> font_face_; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif | 99 #endif |
| OLD | NEW |