| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef FontLoader_h | 5 #ifndef FontLoader_h |
| 6 #define FontLoader_h | 6 #define FontLoader_h |
| 7 | 7 |
| 8 #include "core/fetch/ResourceLoader.h" | 8 #include "core/fetch/ResourceLoader.h" |
| 9 #include "core/fetch/ResourcePtr.h" | 9 #include "core/fetch/ResourcePtr.h" |
| 10 #include "platform/Timer.h" | 10 #include "platform/Timer.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ~FontLoader(); | 25 ~FontLoader(); |
| 26 | 26 |
| 27 void addFontToBeginLoading(FontResource*); | 27 void addFontToBeginLoading(FontResource*); |
| 28 void loadPendingFonts(); | 28 void loadPendingFonts(); |
| 29 void fontFaceInvalidated(); | 29 void fontFaceInvalidated(); |
| 30 | 30 |
| 31 #if !ENABLE(OILPAN) | 31 #if !ENABLE(OILPAN) |
| 32 void clearResourceFetcherAndFontSelector(); | 32 void clearResourceFetcherAndFontSelector(); |
| 33 #endif | 33 #endif |
| 34 | 34 |
| 35 void trace(Visitor*); | 35 DECLARE_TRACE(); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 FontLoader(CSSFontSelector*, ResourceFetcher*); | 38 FontLoader(CSSFontSelector*, ResourceFetcher*); |
| 39 void beginLoadTimerFired(Timer<FontLoader>*); | 39 void beginLoadTimerFired(Timer<FontLoader>*); |
| 40 void clearPendingFonts(); | 40 void clearPendingFonts(); |
| 41 | 41 |
| 42 Timer<FontLoader> m_beginLoadingTimer; | 42 Timer<FontLoader> m_beginLoadingTimer; |
| 43 | 43 |
| 44 struct FontToLoad; | 44 struct FontToLoad; |
| 45 typedef Vector<OwnPtr<FontToLoad>> FontsToLoadVector; | 45 typedef Vector<OwnPtr<FontToLoad>> FontsToLoadVector; |
| 46 FontsToLoadVector m_fontsToBeginLoading; | 46 FontsToLoadVector m_fontsToBeginLoading; |
| 47 RawPtrWillBeMember<CSSFontSelector> m_fontSelector; | 47 RawPtrWillBeMember<CSSFontSelector> m_fontSelector; |
| 48 RawPtrWillBeWeakMember<ResourceFetcher> m_resourceFetcher; | 48 RawPtrWillBeWeakMember<ResourceFetcher> m_resourceFetcher; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace blink | 51 } // namespace blink |
| 52 | 52 |
| 53 #endif // FontLoader_h | 53 #endif // FontLoader_h |
| OLD | NEW |