Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Unified Diff: chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.js

Issue 410293004: Split OptionsPage into Page and PageManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ugh just no Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
},
};

Powered by Google App Engine
This is Rietveld 408576698