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.compositor.bottombar.contextualsearch; | 5 package org.chromium.chrome.browser.compositor.bottombar.contextualsearch; |
6 | 6 |
7 import org.chromium.base.VisibleForTesting; | 7 import org.chromium.base.VisibleForTesting; |
8 import org.chromium.chrome.browser.ChromeActivity; | 8 import org.chromium.chrome.browser.ChromeActivity; |
9 import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.Context
ualSearchPanel.PanelState; | 9 import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.Context
ualSearchPanel.PanelState; |
10 import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.Context
ualSearchPanel.StateChangeReason; | 10 import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.Context
ualSearchPanel.StateChangeReason; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 /** | 186 /** |
187 * @return True if the panel loaded a URL. | 187 * @return True if the panel loaded a URL. |
188 */ | 188 */ |
189 boolean didLoadAnyUrl(); | 189 boolean didLoadAnyUrl(); |
190 | 190 |
191 /** | 191 /** |
192 * Sets the top control state based on the internals of the panel. | 192 * Sets the top control state based on the internals of the panel. |
193 */ | 193 */ |
194 void updateTopControlState(); | 194 void updateTopControlState(); |
| 195 |
| 196 /** |
| 197 * @param shouldAnimateSearchProviderIconSprite Whether the search provider
icon sprite should |
| 198 * be animated. |
| 199 */ |
| 200 void setShouldAnimateSearchProviderIconSprite(boolean shouldAnimateSearchPro
viderIconSprite); |
195 } | 201 } |
OLD | NEW |