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

Unified Diff: blimp/client/public/blimp_navigation_controller.h

Issue 2058263002: Tied up BlimpNavigationController to NavigationFeature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_core
Patch Set: Changed BlimpContentsObserver's navigation methods to OnNavigationStateChanged Created 4 years, 5 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: blimp/client/public/blimp_navigation_controller.h
diff --git a/blimp/client/public/blimp_navigation_controller.h b/blimp/client/public/blimp_navigation_controller.h
index 87b30a0caab76604117eda08ce4cf8c4b4692658..d562767498d5b83cc3b684a48f36a44597798155 100644
--- a/blimp/client/public/blimp_navigation_controller.h
+++ b/blimp/client/public/blimp_navigation_controller.h
@@ -26,6 +26,15 @@ class BlimpNavigationController {
// provided |url|.
virtual void LoadURL(const GURL& url) = 0;
+ // Reloads the current entry.
+ virtual void Reload() = 0;
+
+ // Navigation relative to the "current entry"
David Trainor- moved to gerrit 2016/07/27 16:55:00 . at end
shaktisahu 2016/07/28 19:32:51 Done.
+ virtual bool CanGoBack() const = 0;
+ virtual bool CanGoForward() const = 0;
+ virtual void GoBack() = 0;
+ virtual void GoForward() = 0;
+
// Retrieves the URL of the currently selected item in the navigation list.
virtual const GURL& GetURL() = 0;

Powered by Google App Engine
This is Rietveld 408576698