| Index: chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| diff --git a/chrome/browser/resources/options/hotword_search_setting_indicator.js b/chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| index 38dabea0f13ce9b7dd5a44d4d5f29f2b7cf7aae8..697e63f7b2187a594a6376adcb0308f996f9f1f4 100644
|
| --- a/chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| +++ b/chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| @@ -11,7 +11,7 @@ cr.define('options', function() {
|
| * of the hotword search setting, including a bubble to show setup errors
|
| * (such as failures to download extension resources).
|
| * @constructor
|
| - * @extends {HTMLSpanElement}
|
| + * @extends {options.ControlledSettingIndicator}
|
| */
|
| var HotwordSearchSettingIndicator = cr.ui.define('span');
|
|
|
| @@ -69,8 +69,9 @@ cr.define('options', function() {
|
| * Toggles showing and hiding the error message bubble. An empty
|
| * |errorText_| indicates that there is no error message. So the bubble
|
| * only be shown if |errorText_| has a value.
|
| + * @override
|
| */
|
| - toggleBubble_: function() {
|
| + toggleBubble: function() {
|
| if (this.showingBubble) {
|
| PageManager.hideBubble();
|
| return;
|
|
|