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

Unified Diff: content/browser/frame_host/navigation_controller_impl.h

Issue 2561983002: NavigationController: Reload methods migration (Closed)
Patch Set: android build fix 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
Index: content/browser/frame_host/navigation_controller_impl.h
diff --git a/content/browser/frame_host/navigation_controller_impl.h b/content/browser/frame_host/navigation_controller_impl.h
index f7b9144c75e2c4f80cca3fcb785b71401a38a433..5bc8107ad01c6eaafee787eeca5d4c08709de637 100644
--- a/content/browser/frame_host/navigation_controller_impl.h
+++ b/content/browser/frame_host/navigation_controller_impl.h
@@ -83,13 +83,8 @@ class CONTENT_EXPORT NavigationControllerImpl
void ContinuePendingReload() override;
bool IsInitialNavigation() const override;
bool IsInitialBlankNavigation() const override;
- void Reload(bool check_for_repost, ReloadType reload_type) override;
- // TODO(toyoshim): Remove following Reload* methods once all callers to use
- // new Reload() with ReloadType above. http://crbug.com/670232
- void Reload(bool check_for_repost) override;
- void ReloadBypassingCache(bool check_for_repost) override;
- void ReloadOriginalRequestURL(bool check_for_repost) override;
- void ReloadDisableLoFi(bool check_for_repost) override;
+ void Reload(bool check_for_repost,
+ ReloadType reload_type = ReloadType::NORMAL) override;
void NotifyEntryChanged(const NavigationEntry* entry) override;
void CopyStateFrom(const NavigationController& source) override;
void CopyStateFromAndPrune(NavigationController* source,

Powered by Google App Engine
This is Rietveld 408576698