Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: third_party/WebKit/Source/core/fetch/ImageResourceClient.h

Issue 1738623004: Rename enums/functions that collide in chromium style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-4
Patch Set: get-names-5: rebase-and-stuff Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResource.cpp ('k') | third_party/WebKit/Source/core/fetch/ImageResourceTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698