| Index: chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js
|
| diff --git a/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js b/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js
|
| index aaf94d928daa8a012333b24ab2d2deaf75d3941f..9d31217bb7c79498268993933737e246858f86be 100644
|
| --- a/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js
|
| +++ b/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| cr.define('options', function() {
|
| - /** @const */ var OptionsPage = options.OptionsPage;
|
| + /** @const */ var PageManager = cr.ui.pageManager.PageManager;
|
| /** @const */ var SettingsDialog = options.SettingsDialog;
|
|
|
| /**
|
| @@ -68,7 +68,7 @@ cr.define('options', function() {
|
| var message = loadTimeData.getStringF('thirdPartyImeConfirmMessage',
|
| data.extension);
|
| $('third-party-ime-confirm-text').textContent = message;
|
| - OptionsPage.showPageByName(this.name, false);
|
| + PageManager.showPageByName(this.name, false);
|
| },
|
| };
|
|
|
|
|