| Index: chrome/browser/resources/options/hotword_confirm_dialog.js
|
| diff --git a/chrome/browser/resources/options/hotword_confirm_dialog.js b/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| index c32b77287edd8947815fa48a424c669b1e82e815..c759540ecafdae8750cf53065808e1842fe1bd9c 100644
|
| --- a/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| +++ b/chrome/browser/resources/options/hotword_confirm_dialog.js
|
| @@ -5,7 +5,7 @@
|
| cr.define('options', function() {
|
| /** @const */ var ConfirmDialog = options.ConfirmDialog;
|
| /** @const */ var SettingsDialog = options.SettingsDialog;
|
| - /** @const */ var OptionsPage = options.OptionsPage;
|
| + /** @const */ var PageManager = cr.ui.pageManager.PageManager;
|
|
|
| /**
|
| * A dialog that will pop up when the user attempts to set the value of the
|
| @@ -48,7 +48,7 @@ cr.define('options', function() {
|
|
|
| if (event.value.value && !this.confirmed_) {
|
| if (!this.indicator.errorText) {
|
| - OptionsPage.showPageByName(this.name, false);
|
| + PageManager.showPageByName(this.name, false);
|
| } else {
|
| this.indicator.updateBasedOnError();
|
| this.handleCancel();
|
|
|