Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: third_party/WebKit/Source/core/css/FontLoader.h

Issue 1829403002: Clean up font loading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Resource_status
Patch Set: Address hiroshige's comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/FontLoader.h
diff --git a/third_party/WebKit/Source/core/css/FontLoader.h b/third_party/WebKit/Source/core/css/FontLoader.h
deleted file mode 100644
index b7d516decba7b2a3fbbaafc209e94bba3e1ed655..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/css/FontLoader.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef FontLoader_h
-#define FontLoader_h
-
-#include "core/fetch/ResourceLoader.h"
-#include "platform/Timer.h"
-#include "platform/heap/Handle.h"
-#include "wtf/Vector.h"
-
-namespace blink {
-
-class CSSFontSelector;
-class Document;
-class FontResource;
-
-class FontLoader : public GarbageCollectedFinalized<FontLoader> {
-public:
- static FontLoader* create(CSSFontSelector* fontSelector, Document* document)
- {
- return new FontLoader(fontSelector, document);
- }
- ~FontLoader();
-
- void addFontToBeginLoading(FontResource*);
- void loadPendingFonts();
- void fontFaceInvalidated();
- void didFailToDecode(FontResource*);
-
-#if !ENABLE(OILPAN)
- void clearDocumentAndFontSelector();
-#endif
-
- DECLARE_TRACE();
-
-private:
- FontLoader(CSSFontSelector*, Document*);
- void beginLoadTimerFired(Timer<FontLoader>*);
- void clearPendingFonts();
-
- Timer<FontLoader> m_beginLoadingTimer;
-
- struct FontToLoad;
- using FontsToLoadVector = HeapVector<Member<FontToLoad>>;
- FontsToLoadVector m_fontsToBeginLoading;
- Member<CSSFontSelector> m_fontSelector;
- WeakMember<Document> m_document;
-};
-
-} // namespace blink
-
-#endif // FontLoader_h

Powered by Google App Engine
This is Rietveld 408576698