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

Unified Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 1846733004: Rename IgnoringCacheData to ValidatingCacheData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 4 years, 9 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
« no previous file with comments | « no previous file | content/child/web_url_request_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_content_renderer_client.cc
diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
index 8d2b344e360894b6eb8e66a36a7c0f7867798a00..426578977b830fb2221dc6e2690b8413206c0081 100644
--- a/chrome/renderer/chrome_content_renderer_client.cc
+++ b/chrome/renderer/chrome_content_renderer_client.cc
@@ -1054,8 +1054,8 @@ void ChromeContentRendererClient::GetNavigationErrorStrings(
bool is_post = base::EqualsASCII(
base::StringPiece16(failed_request.httpMethod()), "POST");
- bool is_ignoring_cache = failed_request.getCachePolicy() ==
- blink::WebURLRequest::ReloadBypassingCache;
+ bool is_ignoring_cache =
+ failed_request.getCachePolicy() == blink::WebURLRequest::BypassingCache;
if (error_html) {
NetErrorHelper::Get(render_frame)
->GetErrorHTML(error, is_post, is_ignoring_cache, error_html);
« no previous file with comments | « no previous file | content/child/web_url_request_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698