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

Unified Diff: blimp/client/core/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: Hooked up the Java layer Created 4 years, 6 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/core/public/blimp_navigation_controller.h
diff --git a/blimp/client/core/public/blimp_navigation_controller.h b/blimp/client/core/public/blimp_navigation_controller.h
index fc79b068f21269eac92283111750522dcb009f72..1568b819dc9cd7fb104f7c292521a2594127c0c9 100644
--- a/blimp/client/core/public/blimp_navigation_controller.h
+++ b/blimp/client/core/public/blimp_navigation_controller.h
@@ -25,6 +25,11 @@ class BlimpNavigationController {
// Calls to LoadURL informs the engine that it should start navigating to the
// provided |url|.
virtual void LoadURL(const GURL& url) = 0;
+ virtual void Reload() = 0;
+ 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