| 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*); | |
| 36 | |
| 37 private: | 35 private: |
| 38 FontLoader(CSSFontSelector*, ResourceFetcher*); | 36 FontLoader(CSSFontSelector*, ResourceFetcher*); |
| 39 void beginLoadTimerFired(Timer<FontLoader>*); | 37 void beginLoadTimerFired(Timer<FontLoader>*); |
| 40 void clearPendingFonts(); | 38 void clearPendingFonts(); |
| 41 | 39 |
| 42 Timer<FontLoader> m_beginLoadingTimer; | 40 Timer<FontLoader> m_beginLoadingTimer; |
| 43 | 41 |
| 44 typedef Vector<std::pair<ResourcePtr<FontResource>, ResourceLoader::RequestC
ountTracker> > FontsToLoadVector; | 42 typedef Vector<std::pair<ResourcePtr<FontResource>, ResourceLoader::RequestC
ountTracker> > FontsToLoadVector; |
| 45 FontsToLoadVector m_fontsToBeginLoading; | 43 FontsToLoadVector m_fontsToBeginLoading; |
| 46 RawPtr<CSSFontSelector> m_fontSelector; | 44 RawPtr<CSSFontSelector> m_fontSelector; |
| 47 RawPtr<ResourceFetcher> m_resourceFetcher; | 45 RawPtr<ResourceFetcher> m_resourceFetcher; |
| 48 }; | 46 }; |
| 49 | 47 |
| 50 } // namespace blink | 48 } // namespace blink |
| 51 | 49 |
| 52 #endif // FontLoader_h | 50 #endif // FontLoader_h |
| OLD | NEW |