| Index: blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpNavigationController.java
|
| diff --git a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpNavigationController.java b/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpNavigationController.java
|
| index f7f659bccea52e0b0f785748b81565857873e70b..952be75caaf2e635df0594704f6bdb95c4e63518 100644
|
| --- a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpNavigationController.java
|
| +++ b/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpNavigationController.java
|
| @@ -28,6 +28,11 @@ public interface BlimpNavigationController {
|
| String getUrl();
|
|
|
| /**
|
| + * Returns the title of the currently visible page.
|
| + */
|
| + String getTitle();
|
| +
|
| + /**
|
| * @return Whether back navigation is possible from the "current entry".
|
| */
|
| boolean canGoBack();
|
| @@ -48,10 +53,7 @@ public interface BlimpNavigationController {
|
| 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.
|
| - * @param checkForRepost Prompts the user if they want to reload the page.
|
| + * Reloads the current page.
|
| */
|
| - public void reload(boolean checkForRepost);
|
| + public void reload();
|
| }
|
|
|