| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2011 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 public: | 71 public: |
| 72 static PassRefPtrWillBeRawPtr<CSSFontSelector> create(Document* document) | 72 static PassRefPtrWillBeRawPtr<CSSFontSelector> create(Document* document) |
| 73 { | 73 { |
| 74 return adoptRefWillBeNoop(new CSSFontSelector(document)); | 74 return adoptRefWillBeNoop(new CSSFontSelector(document)); |
| 75 } | 75 } |
| 76 virtual ~CSSFontSelector(); | 76 virtual ~CSSFontSelector(); |
| 77 | 77 |
| 78 virtual unsigned version() const OVERRIDE { return m_fontFaceCache.version()
; } | 78 virtual unsigned version() const OVERRIDE { return m_fontFaceCache.version()
; } |
| 79 | 79 |
| 80 virtual PassRefPtr<FontData> getFontData(const FontDescription&, const Atomi
cString&) OVERRIDE; | 80 virtual PassRefPtr<FontData> getFontData(const FontDescription&, const Atomi
cString&) OVERRIDE; |
| 81 virtual void willUseFontData(const FontDescription&, const AtomicString& fam
ily, UChar32) OVERRIDE; | 81 virtual void willUseFontData(const FontDescription&, const AtomicString& fam
ily) OVERRIDE; |
| 82 | 82 |
| 83 void clearDocument(); | 83 void clearDocument(); |
| 84 | 84 |
| 85 void fontLoaded(); | 85 void fontLoaded(); |
| 86 | 86 |
| 87 // FontCacheClient implementation | 87 // FontCacheClient implementation |
| 88 virtual void fontCacheInvalidated() OVERRIDE; | 88 virtual void fontCacheInvalidated() OVERRIDE; |
| 89 | 89 |
| 90 void registerForInvalidationCallbacks(CSSFontSelectorClient*); | 90 void registerForInvalidationCallbacks(CSSFontSelectorClient*); |
| 91 #if !ENABLE(OILPAN) | 91 #if !ENABLE(OILPAN) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 113 FontFaceCache m_fontFaceCache; | 113 FontFaceCache m_fontFaceCache; |
| 114 WillBeHeapHashSet<RawPtrWillBeWeakMember<CSSFontSelectorClient> > m_clients; | 114 WillBeHeapHashSet<RawPtrWillBeWeakMember<CSSFontSelectorClient> > m_clients; |
| 115 | 115 |
| 116 FontLoader m_fontLoader; | 116 FontLoader m_fontLoader; |
| 117 GenericFontFamilySettings m_genericFontFamilySettings; | 117 GenericFontFamilySettings m_genericFontFamilySettings; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace WebCore | 120 } // namespace WebCore |
| 121 | 121 |
| 122 #endif // CSSFontSelector_h | 122 #endif // CSSFontSelector_h |
| OLD | NEW |