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

Unified Diff: ios/web/navigation/navigation_manager_impl.h

Issue 2742953003: created web::ReloadType (Closed)
Patch Set: Created 3 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: ios/web/navigation/navigation_manager_impl.h
diff --git a/ios/web/navigation/navigation_manager_impl.h b/ios/web/navigation/navigation_manager_impl.h
index 560a3832bda379b9e2f5105cf32aa8db1ece8fec..e43e50cd59cd864d2ffd9a80c01b9bcfde42b699 100644
--- a/ios/web/navigation/navigation_manager_impl.h
+++ b/ios/web/navigation/navigation_manager_impl.h
@@ -26,6 +26,7 @@ struct Referrer;
class NavigationManagerDelegate;
class NavigationManagerFacadeDelegate;
class SessionStorageBuilder;
+enum class ReloadType : short;
kkhorimoto 2017/03/10 21:26:45 optional nit: Generally for public web// interface
liaoyuke 2017/03/10 21:42:34 Done. For consistency.
// Defines the ways how a pending navigation can be initiated.
enum class NavigationInitiationType {
@@ -140,7 +141,7 @@ class NavigationManagerImpl : public NavigationManager {
void GoBack() override;
void GoForward() override;
void GoToIndex(int index) override;
- void Reload(bool check_for_reposts) override;
+ void Reload(ReloadType reload_type, bool check_for_reposts) override;
void OverrideDesktopUserAgentForNextPendingItem() override;
// Returns the current list of transient url rewriters, passing ownership to

Powered by Google App Engine
This is Rietveld 408576698