| 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.enhancedbookmarks; | 5 package org.chromium.chrome.browser.enhancedbookmarks; |
| 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 21 matching lines...) Expand all Loading... |
| 32 void onFolderStateSet(BookmarkId folder); | 32 void onFolderStateSet(BookmarkId folder); |
| 33 | 33 |
| 34 /** | 34 /** |
| 35 * Please refer to | 35 * Please refer to |
| 36 * {@link EnhancedBookmarkDelegate#toggleSelectionForBookmark(BookmarkId)}, | 36 * {@link EnhancedBookmarkDelegate#toggleSelectionForBookmark(BookmarkId)}, |
| 37 * {@link EnhancedBookmarkDelegate#clearSelection()} and | 37 * {@link EnhancedBookmarkDelegate#clearSelection()} and |
| 38 * {@link EnhancedBookmarkDelegate#getSelectedBookmarks()} | 38 * {@link EnhancedBookmarkDelegate#getSelectedBookmarks()} |
| 39 */ | 39 */ |
| 40 void onSelectionStateChange(List<BookmarkId> selectedBookmarks); | 40 void onSelectionStateChange(List<BookmarkId> selectedBookmarks); |
| 41 } | 41 } |
| OLD | NEW |