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 android.support.v4.widget.DrawerLayout; | 7 import android.support.v4.widget.DrawerLayout; |
8 | 8 |
9 import org.chromium.chrome.browser.favicon.LargeIconBridge; | 9 import org.chromium.chrome.browser.favicon.LargeIconBridge; |
10 import org.chromium.chrome.browser.snackbar.SnackbarManager; | 10 import org.chromium.chrome.browser.snackbar.SnackbarManager; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 */ | 124 */ |
125 void removeUIObserver(EnhancedBookmarkUIObserver observer); | 125 void removeUIObserver(EnhancedBookmarkUIObserver observer); |
126 | 126 |
127 /** | 127 /** |
128 * @return Enhanced bookmark data model associated with this UI. | 128 * @return Enhanced bookmark data model associated with this UI. |
129 */ | 129 */ |
130 EnhancedBookmarksModel getModel(); | 130 EnhancedBookmarksModel getModel(); |
131 | 131 |
132 /** | 132 /** |
133 * @return Current UIState of Enhanced Bookmark main UI. If no mode is store
d, | 133 * @return Current UIState of Enhanced Bookmark main UI. If no mode is store
d, |
134 * {@link UIState#STATE_LOADING} is returned. | 134 * {@link EnhancedBookmarkUIState#STATE_LOADING} is returned. |
135 */ | 135 */ |
136 int getCurrentState(); | 136 int getCurrentState(); |
137 | 137 |
138 /** | 138 /** |
139 * @return LargeIconBridge instance. By sharing the instance, we can also sh
are the cache. | 139 * @return LargeIconBridge instance. By sharing the instance, we can also sh
are the cache. |
140 */ | 140 */ |
141 LargeIconBridge getLargeIconBridge(); | 141 LargeIconBridge getLargeIconBridge(); |
142 | 142 |
143 /** | 143 /** |
144 * @return SnackbarManager instance. | 144 * @return SnackbarManager instance. |
145 */ | 145 */ |
146 SnackbarManager getSnackbarManager(); | 146 SnackbarManager getSnackbarManager(); |
147 } | 147 } |
OLD | NEW |