| Index: blimp/client/public/contents/blimp_navigation_controller.h
|
| diff --git a/blimp/client/public/contents/blimp_navigation_controller.h b/blimp/client/public/contents/blimp_navigation_controller.h
|
| index c8509e9cbd39fcdb81eae7027b0a1ed85b1f296c..f2d38ee15ad2ac50c63aa88c3e84725ab0432fa7 100644
|
| --- a/blimp/client/public/contents/blimp_navigation_controller.h
|
| +++ b/blimp/client/public/contents/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".
|
| + 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;
|
|
|
|
|