Rename IGNORING_CACHE to BYPASSING_CACHE
chrome and content uses IGNORE_CACHE to specify a strong reload.
But, Blink uses ReloadBypassingCache instead of ReloadIgnoringCacheData.
This is confusing and we should use consistent words in the project.
This series of changes remove 'ignore' or 'ignoring' from the code base
completely, and use 'validate' and 'bypass' to be consistent with
net flags.
BUG=599364
CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation
[email protected]
Review URL: https://codereview.chromium.org/1846653004
Cr-Commit-Position: refs/heads/master@{#384581}
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index 82638b4..552dfb6 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -890,7 +890,7 @@
// different parts of the page loaded using different user agents.
NavigationEntry* entry = controller_.GetVisibleEntry();
if (IsLoading() && entry != NULL && entry->GetIsOverridingUserAgent())
- controller_.ReloadIgnoringCache(true);
+ controller_.ReloadBypassingCache(true);
FOR_EACH_OBSERVER(WebContentsObserver, observers_,
UserAgentOverrideSet(override));