| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.bookmarks; | 5 package org.chromium.chrome.browser.bookmarks; |
| 6 | 6 |
| 7 import org.chromium.components.bookmarks.BookmarkId; | 7 import org.chromium.components.bookmarks.BookmarkId; |
| 8 | 8 |
| 9 import java.util.List; | 9 import java.util.List; |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * @see BookmarkDelegate#openAllBookmarks() | 25 * @see BookmarkDelegate#openAllBookmarks() |
| 26 */ | 26 */ |
| 27 void onAllBookmarksStateSet(); | 27 void onAllBookmarksStateSet(); |
| 28 | 28 |
| 29 /** | 29 /** |
| 30 * @see BookmarkDelegate#openFolder(BookmarkId) | 30 * @see BookmarkDelegate#openFolder(BookmarkId) |
| 31 */ | 31 */ |
| 32 void onFolderStateSet(BookmarkId folder); | 32 void onFolderStateSet(BookmarkId folder); |
| 33 | 33 |
| 34 /** | 34 /** |
| 35 * @see BookmarkDelegate#openFilter(BookmarkFilter) | |
| 36 */ | |
| 37 void onFilterStateSet(BookmarkFilter filter); | |
| 38 | |
| 39 /** | |
| 40 * Please refer to | 35 * Please refer to |
| 41 * {@link BookmarkDelegate#toggleSelectionForBookmark(BookmarkId)}, | 36 * {@link BookmarkDelegate#toggleSelectionForBookmark(BookmarkId)}, |
| 42 * {@link BookmarkDelegate#clearSelection()} and | 37 * {@link BookmarkDelegate#clearSelection()} and |
| 43 * {@link BookmarkDelegate#getSelectedBookmarks()} | 38 * {@link BookmarkDelegate#getSelectedBookmarks()} |
| 44 */ | 39 */ |
| 45 void onSelectionStateChange(List<BookmarkId> selectedBookmarks); | 40 void onSelectionStateChange(List<BookmarkId> selectedBookmarks); |
| 46 } | 41 } |
| OLD | NEW |