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

Unified Diff: chrome/browser/resources/options/hotword_search_setting_indicator.js

Issue 410293004: Split OptionsPage into Page and PageManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/PageTree/PageManager/, s/pageHelper/pageManager/ 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/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);
},
};

Powered by Google App Engine
This is Rietveld 408576698