diff options
Diffstat (limited to 'src/com/android/browser/UiController.java')
-rw-r--r-- | src/com/android/browser/UiController.java | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/com/android/browser/UiController.java b/src/com/android/browser/UiController.java index 10821cd..14d498c 100644 --- a/src/com/android/browser/UiController.java +++ b/src/com/android/browser/UiController.java @@ -29,7 +29,7 @@ import java.util.List; /** * UI aspect of the controller */ -public interface UiController extends BookmarksHistoryCallbacks { +public interface UiController { UI getUi(); @@ -60,7 +60,7 @@ public interface UiController extends BookmarksHistoryCallbacks { void stopLoading(); - void bookmarkCurrentPage(boolean canBeAnEdit); + Intent createBookmarkCurrentPageIntent(boolean canBeAnEdit); void bookmarksOrHistoryPicker(boolean openHistory); @@ -76,8 +76,6 @@ public interface UiController extends BookmarksHistoryCallbacks { boolean shouldShowErrorConsole(); - void removeComboView(); - void hideCustomView(); void attachSubWindow(Tab tab); @@ -90,10 +88,6 @@ public interface UiController extends BookmarksHistoryCallbacks { void shareCurrentPage(); - void registerOptionsMenuHandler(OptionsMenuHandler handler); - - void unregisterOptionsMenuHandler(OptionsMenuHandler handler); - void updateMenuState(Tab tab, Menu menu); void registerDropdownChangeListener(DropdownChangeListener d); |