Index: chrome/browser/resources/chromeos/bluetooth_options.js |
diff --git a/chrome/browser/resources/chromeos/bluetooth_options.js b/chrome/browser/resources/chromeos/bluetooth_options.js |
index 50ac86514fc7ceabc466dc5c88c1927fc378279e..150592aab3a782004be343d02b2f4b9961936e22 100644 |
--- a/chrome/browser/resources/chromeos/bluetooth_options.js |
+++ b/chrome/browser/resources/chromeos/bluetooth_options.js |
@@ -3,7 +3,7 @@ |
// found in the LICENSE file. |
cr.define('options', function() { |
- /** @const */ var OptionsPage = options.OptionsPage; |
+ /** @const */ var Page = cr.ui.pageManager.Page; |
/** |
* Encapsulated handling of the BluetoothOptions calls from |
@@ -12,16 +12,13 @@ cr.define('options', function() { |
* @constructor |
*/ |
function BluetoothOptions() { |
- OptionsPage.call(this, |
- 'bluetooth', |
- '', |
- 'bluetooth-container'); |
+ Page.call(this, 'bluetooth', '', 'bluetooth-container'); |
} |
cr.addSingletonGetter(BluetoothOptions); |
BluetoothOptions.prototype = { |
- __proto__: OptionsPage.prototype, |
+ __proto__: Page.prototype, |
}; |
BluetoothOptions.updateDiscovery = function() { |