| 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 97ea91f2ea76ce92fe8f0dfc61ea812019b653c2..c3d59522849d20df7a03f4f629f934703c1654c0 100644
|
| --- a/third_party/WebKit/Source/core/fetch/FontResource.h
|
| +++ b/third_party/WebKit/Source/core/fetch/FontResource.h
|
| @@ -67,6 +67,8 @@ class CORE_EXPORT FontResource final : public Resource {
|
| bool italic,
|
| FontOrientation = FontOrientation::Horizontal);
|
|
|
| + void willReloadAfterDiskCacheMiss() override;
|
| +
|
| private:
|
| class FontResourceFactory : public ResourceFactory {
|
| public:
|
| @@ -107,6 +109,7 @@ class FontResourceClient : public ResourceClient {
|
| ResourceClientType getResourceClientType() const final { return FontType; }
|
| virtual void fontLoadShortLimitExceeded(FontResource*) {}
|
| virtual void fontLoadLongLimitExceeded(FontResource*) {}
|
| + virtual void willReloadAfterDiskCacheMiss(const FontResource*) {}
|
| };
|
|
|
| } // namespace blink
|
|
|