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/ResourceClientWalker.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 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/ResourceClientWalker.h
diff --git a/third_party/WebKit/Source/core/fetch/ResourceClientWalker.h b/third_party/WebKit/Source/core/fetch/ResourceClientWalker.h
index 5096b0511d0bd88f005a96beaf3ed25f9620abc0..690ee59dbf4195d4878e99c37da77ae0b29bb334 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceClientWalker.h
+++ b/third_party/WebKit/Source/core/fetch/ResourceClientWalker.h
@@ -51,7 +51,7 @@ public:
while (m_index < size) {
ResourceClient* next = m_clientVector[m_index++];
if (m_clientSet.contains(next)) {
- ASSERT(T::expectedType() == ResourceClient::expectedType() || next->resourceClientType() == T::expectedType());
+ ASSERT(T::expectedType() == ResourceClient::expectedType() || next->getResourceClientType() == T::expectedType());
return static_cast<T*>(next);
}
}

Powered by Google App Engine
This is Rietveld 408576698