Chromium Code Reviews| 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; |