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 |
index a7e76342e925f878f587eee4bfc2732404102bd8..9221b4f5553f1e36139f69a70b73247960fd4f40 100644 |
--- a/third_party/WebKit/Source/core/css/FontLoader.h |
+++ b/third_party/WebKit/Source/core/css/FontLoader.h |
@@ -6,7 +6,6 @@ |
#define FontLoader_h |
#include "core/fetch/ResourceLoader.h" |
-#include "core/fetch/ResourcePtr.h" |
#include "platform/Timer.h" |
#include "platform/heap/Handle.h" |
#include "wtf/Vector.h" |
@@ -44,7 +43,7 @@ private: |
Timer<FontLoader> m_beginLoadingTimer; |
struct FontToLoad; |
- using FontsToLoadVector = Vector<OwnPtr<FontToLoad>>; |
+ using FontsToLoadVector = WillBeHeapVector<OwnPtrWillBeMember<FontToLoad>>; |
FontsToLoadVector m_fontsToBeginLoading; |
RawPtrWillBeMember<CSSFontSelector> m_fontSelector; |
RawPtrWillBeWeakMember<Document> m_document; |