Index: third_party/WebKit/Source/core/fetch/FontResource.h |
diff --git a/third_party/WebKit/Source/core/fetch/FontResource.h b/third_party/WebKit/Source/core/fetch/FontResource.h |
index c58741e99ab0361080d5787517ad491d60d0440e..b3852f73cc36c7dc626348cf17628abdcd0ea2a2 100644 |
--- a/third_party/WebKit/Source/core/fetch/FontResource.h |
+++ b/third_party/WebKit/Source/core/fetch/FontResource.h |
@@ -47,16 +47,10 @@ public: |
static FontResource* fetch(FetchRequest&, ResourceFetcher*); |
~FontResource() override; |
- void load(ResourceFetcher*) override; |
- |
void didAddClient(ResourceClient*) override; |
void allClientsAndObserversRemoved() override; |
- void beginLoadIfNeeded(ResourceFetcher* dl); |
- |
- bool loadScheduled() const { return getStatus() == LoadStartScheduled; } |
- void didScheduleLoad(); |
- void didUnscheduleLoad(); |
+ void startLoadLimitTimersIfNeeded(); |
void setCORSFailed() override { m_corsFailed = true; } |
bool isCORSFailed() const { return m_corsFailed; } |
@@ -105,7 +99,6 @@ public: |
static bool isExpectedType(ResourceClient* client) { return client->getResourceClientType() == FontType; } |
ResourceClientType getResourceClientType() const final { return FontType; } |
virtual void fontLoaded(FontResource*) {} |
- virtual void didStartFontLoad(FontResource*) {} |
virtual void fontLoadShortLimitExceeded(FontResource*) {} |
virtual void fontLoadLongLimitExceeded(FontResource*) {} |
}; |