| 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 2089e8a3ee987f978c218b243b7201fdbc604a78..a920e6c10f2d059cd6b022a76471cf3df2a0e59b 100644
|
| --- a/chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| +++ b/chrome/browser/resources/options/hotword_search_setting_indicator.js
|
| @@ -33,7 +33,7 @@ cr.define('options', function() {
|
| * @override
|
| */
|
| handlePrefChange: function(event) {
|
| - OptionsPage.hideBubble();
|
| + PageManager.hideBubble();
|
| },
|
|
|
| /**
|
| @@ -82,7 +82,7 @@ cr.define('options', function() {
|
| */
|
| toggleBubble_: function() {
|
| if (this.showingBubble) {
|
| - OptionsPage.hideBubble();
|
| + PageManager.hideBubble();
|
| return;
|
| }
|
|
|
| @@ -107,7 +107,7 @@ cr.define('options', function() {
|
| var content = document.createElement('div');
|
| content.appendChild(container);
|
|
|
| - OptionsPage.showBubble(content, this.image, this, this.location);
|
| + PageManager.showBubble(content, this.image, this, this.location);
|
| },
|
| };
|
|
|
|
|