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

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

Issue 2561403003: Use getDataBufferingPolicy() instead of the redundant dataBufferingPolicy(). (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/Resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 424156bf7e71fab9ab056d083f9be777b235e579..210ed2286218413d0f1908b8d423df6a00689b93 100644
--- a/third_party/WebKit/Source/core/fetch/RawResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/RawResource.cpp
@@ -258,7 +258,7 @@ static bool isCacheableHTTPMethod(const AtomicString& method) {
}
bool RawResource::canReuse(const ResourceRequest& newRequest) const {
- if (dataBufferingPolicy() == DoNotBufferData)
+ if (getDataBufferingPolicy() == DoNotBufferData)
return false;
if (!isCacheableHTTPMethod(resourceRequest().httpMethod()))
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/Resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698