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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLRequest.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: 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/platform/exported/WebURLRequest.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
index 7369ba5c1e29672dbfe8838de60e0451e8dfe576..7f40a7d3b5bc6bf14b3b07d65ddd2f5ae2ec659f 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
@@ -147,10 +147,10 @@ void WebURLRequest::setAllowStoredCredentials(bool allowStoredCredentials)
m_private->m_resourceRequest->setAllowStoredCredentials(allowStoredCredentials);
}
-WebURLRequest::CachePolicy WebURLRequest::cachePolicy() const
+WebURLRequest::CachePolicy WebURLRequest::getCachePolicy() const
{
return static_cast<WebURLRequest::CachePolicy>(
- m_private->m_resourceRequest->cachePolicy());
+ m_private->m_resourceRequest->getCachePolicy());
}
void WebURLRequest::setCachePolicy(CachePolicy cachePolicy)

Powered by Google App Engine
This is Rietveld 408576698