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

Unified Diff: content/public/browser/navigation_controller.h

Issue 1846653004: Rename IGNORING_CACHE to BYPASSING_CACHE (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: content/public/browser/navigation_controller.h
diff --git a/content/public/browser/navigation_controller.h b/content/public/browser/navigation_controller.h
index 4c84b393d47cd3c9a546ecad69fe49d4f7d611a1..9e6cb60cc7121b89f7954d761d24624cb84ff546 100644
--- a/content/public/browser/navigation_controller.h
+++ b/content/public/browser/navigation_controller.h
@@ -48,7 +48,7 @@ class NavigationController {
enum ReloadType {
NO_RELOAD, // Normal load, restore, or history navigation.
RELOAD, // Normal (cache-validating) reload.
- RELOAD_IGNORING_CACHE, // Reload bypassing the cache (shift-reload).
+ RELOAD_BYPASSING_CACHE, // Reload bypassing the cache (shift-reload).
RELOAD_ORIGINAL_REQUEST_URL, // Reload using the original request URL.
RELOAD_DISABLE_LOFI_MODE // Reload with Lo-Fi mode disabled.
};
@@ -379,7 +379,7 @@ class NavigationController {
virtual void ReloadToRefreshContent(bool check_for_repost) = 0;
// Like Reload(), but don't use caches (aka "shift-reload").
- virtual void ReloadIgnoringCache(bool check_for_repost) = 0;
+ virtual void ReloadBypassingCache(bool check_for_repost) = 0;
// Reloads the current entry using the original URL used to create it. This
// is used for cases where the user wants to refresh a page using a different

Powered by Google App Engine
This is Rietveld 408576698