Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1311)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/bookmarks/BookmarkUIObserver.java

Issue 1894703002: [Offline pages] Removing offline pages from Bookmarks UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marking more methods as visible for testing Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698