| Index: third_party/WebKit/Source/core/fetch/ResourceClient.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/ResourceClient.h b/third_party/WebKit/Source/core/fetch/ResourceClient.h
|
| index 41fe1bcc42fbb794796c24dc7a54f12fac64ac65..545886dda8559a7c9d9df5216a3288c12dae3a55 100644
|
| --- a/third_party/WebKit/Source/core/fetch/ResourceClient.h
|
| +++ b/third_party/WebKit/Source/core/fetch/ResourceClient.h
|
| @@ -26,7 +26,6 @@
|
| #define ResourceClient_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "platform/network/ResourceLoadPriority.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| @@ -37,7 +36,6 @@ class CORE_EXPORT ResourceClient {
|
| public:
|
| enum ResourceClientType {
|
| BaseResourceType,
|
| - ImageType,
|
| FontType,
|
| StyleSheetType,
|
| DocumentType,
|
| @@ -51,8 +49,6 @@ public:
|
| static bool isExpectedType(ResourceClient*) { return true; }
|
| virtual ResourceClientType getResourceClientType() const { return BaseResourceType; }
|
|
|
| - virtual ResourcePriority computeResourcePriority() const { return ResourcePriority(); }
|
| -
|
| // Name for debugging, e.g. shown in memory-infra.
|
| virtual String debugName() const = 0;
|
|
|
|
|