| 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 7ddff60c59ac4cdd0efe6a3f5b404b36b39e3bba..7a7f4ade03282a6d17d954b1e13ba7d58db65b0f 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,20 +12,20 @@ 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,
|
|
|
| /** @override */
|
| initializePage: function() {
|
| - OptionsPage.prototype.initializePage.call(this);
|
| + Page.prototype.initializePage.call(this);
|
| },
|
| };
|
|
|
|
|