Java Code Examples for org.chromium.chrome.browser.bookmarks.BookmarkUtils#showBookmarkManager()
The following examples show how to use
org.chromium.chrome.browser.bookmarks.BookmarkUtils#showBookmarkManager() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Tab.java From delion with Apache License 2.0 | 4 votes |
/** * Shows the list of offline pages. This should only be hit when offline pages feature is * enabled. */ @CalledByNative public void showOfflinePages() { // The offline pages filter view will be loaded by default when offline. BookmarkUtils.showBookmarkManager(getActivity()); }
Example 2
Source File: SuggestionsNavigationDelegateImpl.java From 365browser with Apache License 2.0 | 4 votes |
@Override public void navigateToBookmarks() { RecordUserAction.record("MobileNTPSwitchToBookmarks"); BookmarkUtils.showBookmarkManager(mActivity); }