| Index: third_party/WebKit/Source/core/css/CSSFontSelector.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFontSelector.h b/third_party/WebKit/Source/core/css/CSSFontSelector.h
|
| index e9a12e6f0e969a0d5340159ce48f6ccfc8d294df..29f1e68e94f08e619515e38082a07c8ca21dba84 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFontSelector.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSFontSelector.h
|
| @@ -28,7 +28,6 @@
|
|
|
| #include "core/CoreExport.h"
|
| #include "core/css/FontFaceCache.h"
|
| -#include "core/css/FontLoader.h"
|
| #include "platform/fonts/FontSelector.h"
|
| #include "platform/fonts/GenericFontFamilySettings.h"
|
| #include "platform/heap/Handle.h"
|
| @@ -66,7 +65,6 @@ public:
|
|
|
| Document* document() const { return m_document; }
|
| FontFaceCache* fontFaceCache() { return &m_fontFaceCache; }
|
| - FontLoader* fontLoader() { return m_fontLoader.get(); }
|
|
|
| const GenericFontFamilySettings& genericFontFamilySettings() const { return m_genericFontFamilySettings; }
|
| void updateGenericFontFamilySettings(Document&);
|
| @@ -86,8 +84,6 @@ private:
|
| // FIXME: Move to Document or StyleEngine.
|
| FontFaceCache m_fontFaceCache;
|
| HeapHashSet<WeakMember<CSSFontSelectorClient>> m_clients;
|
| -
|
| - Member<FontLoader> m_fontLoader;
|
| GenericFontFamilySettings m_genericFontFamilySettings;
|
| };
|
|
|
|
|