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

Unified Diff: third_party/WebKit/Source/core/fetch/RawResource.cpp

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 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/RawResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/RawResource.cpp b/third_party/WebKit/Source/core/fetch/RawResource.cpp
index 30a96b023081af94cc44414a6607ca8dfed7d31d..8b227e7b1013a0b623c950b7e03dc0b572dfcbff 100644
--- a/third_party/WebKit/Source/core/fetch/RawResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/RawResource.cpp
@@ -108,7 +108,7 @@ void RawResource::didAddClient(ResourceClient* c)
// this resource to be evicted from the cache and all clients to be removed,
// so a protector is necessary.
RefPtrWillBeRawPtr<RawResource> protect(this);
- ASSERT(c->resourceClientType() == RawResourceClient::expectedType());
+ ASSERT(c->getResourceClientType() == RawResourceClient::expectedType());
RawResourceClient* client = static_cast<RawResourceClient*>(c);
for (const auto& redirect : redirectChain()) {
ResourceRequest request(redirect.m_request);

Powered by Google App Engine
This is Rietveld 408576698