Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / options / controlled_setting.js
index 5ac42d9..fae2640 100644 (file)
@@ -56,7 +56,7 @@ cr.define('options', function() {
      * @param {Event} event Pref change event.
      */
     handlePrefChange: function(event) {
-      OptionsPage.hideBubble();
+      PageManager.hideBubble();
       if (event.value.controlledBy) {
         if (!this.value || String(event.value.value) == this.value) {
           this.controlledBy = event.value.controlledBy;
@@ -83,7 +83,7 @@ cr.define('options', function() {
      */
     toggleBubble_: function() {
       if (this.showingBubble) {
-        OptionsPage.hideBubble();
+        PageManager.hideBubble();
       } else {
         var self = this;
 
@@ -179,7 +179,7 @@ cr.define('options', function() {
           content.appendChild(extensionContainer);
         }
 
-        OptionsPage.showBubble(content, this.image, this, this.location);
+        PageManager.showBubble(content, this.image, this, this.location);
       }
     },
   };