| Index: blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
|
| diff --git a/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpNavigationController.java b/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
|
| index efc4da2af9a384fcfb27d0980b3184103fef19d3..a39dc68d2f8aeaa346c4d9ff9f9d3cb99575cf6b 100644
|
| --- a/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
|
| +++ b/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
|
| @@ -26,4 +26,31 @@ public interface BlimpNavigationController {
|
| * Retrieves the URL of the currently selected item in the navigation list.
|
| */
|
| String getUrl();
|
| +
|
| + /**
|
| + * @return Whether back navigation is possible from the "current entry".
|
| + */
|
| + boolean canGoBack();
|
| +
|
| + /**
|
| + * @return Whether forward navigation is possible from the "current entry".
|
| + */
|
| + boolean canGoForward();
|
| +
|
| + /**
|
| + * Goes to the navigation entry before the current one.
|
| + */
|
| + void goBack();
|
| +
|
| + /**
|
| + * Goes to the navigation entry following the current one.
|
| + */
|
| + void goForward();
|
| +
|
| + /**
|
| + * Reload the current page. If |checkForRepost| is true and the current entry has POST data the
|
| + * user is prompted to see if they really want to reload the page. In nearly all cases pass in
|
| + * true.
|
| + */
|
| + public void reload(boolean checkForRepost);
|
| }
|
|
|