Index: third_party/WebKit/Source/core/fetch/ImageResourceClient.h |
diff --git a/third_party/WebKit/Source/core/fetch/ImageResourceClient.h b/third_party/WebKit/Source/core/fetch/ImageResourceClient.h |
index 32fac1ff9935ebe84ad0ecf0c57e5e25b19869f1..cc69a3dc60abbfe4617f1c9da33f3b104b76bb5b 100644 |
--- a/third_party/WebKit/Source/core/fetch/ImageResourceClient.h |
+++ b/third_party/WebKit/Source/core/fetch/ImageResourceClient.h |
@@ -35,8 +35,8 @@ class IntRect; |
class CORE_EXPORT ImageResourceClient : public ResourceClient { |
public: |
~ImageResourceClient() override {} |
- static bool isExpectedType(ResourceClient* client) { return client->resourceClientType() == ImageType; } |
- ResourceClientType resourceClientType() const final { return ImageType; } |
+ static bool isExpectedType(ResourceClient* client) { return client->getResourceClientType() == ImageType; } |
+ ResourceClientType getResourceClientType() const final { return ImageType; } |
// Called whenever a frame of an image changes, either because we got more data from the network or |
// because we are animating. If not null, the IntRect is the changed rect of the image. |