Index: content/public/browser/navigation_controller.h |
diff --git a/content/public/browser/navigation_controller.h b/content/public/browser/navigation_controller.h |
index 3ad7e03a6936c7d3840ee23607de4b7440fa7454..af1b3b97dea08307b75f1b384f59e0260f54e91f 100644 |
--- a/content/public/browser/navigation_controller.h |
+++ b/content/public/browser/navigation_controller.h |
@@ -43,7 +43,8 @@ class NavigationController { |
NO_RELOAD, // Normal load. |
RELOAD, // Normal (cache-validating) reload. |
RELOAD_IGNORING_CACHE, // Reload bypassing the cache (shift-reload). |
- RELOAD_ORIGINAL_REQUEST_URL // Reload using the original request URL. |
+ RELOAD_ORIGINAL_REQUEST_URL, // Reload using the original request URL. |
+ RELOAD_DISABLE_LOFI_MODE // Reload with Lo-Fi mode disabled. |
}; |
// Load type used in LoadURLParams. |
@@ -365,6 +366,9 @@ class NavigationController { |
// user agent after following a redirect. |
virtual void ReloadOriginalRequestURL(bool check_for_repost) = 0; |
+ // Like Reload(), but disables Lo-Fi. |
+ virtual void ReloadDisableLoFi(bool check_for_repost) = 0; |
+ |
// Removing of entries ------------------------------------------------------- |
// Removes the entry at the specified |index|. If the index is the last |