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

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: Addressed code review comments 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..d1f96548c2123e7f45b2a16293ad6e34a6b710d5 100644
--- a/blimp/client/public/blimp_navigation_controller.h
+++ b/blimp/client/public/blimp_navigation_controller.h
@@ -26,6 +26,12 @@ class BlimpNavigationController {
// provided |url|.
virtual void LoadURL(const GURL& url) = 0;
+ virtual void Reload() = 0;
David Trainor- moved to gerrit 2016/07/25 15:57:32 Do these require documentation?
shaktisahu 2016/07/26 01:25:27 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