| Index: chrome/browser/resources/chromeos/browser_options.js
|
| diff --git a/chrome/browser/resources/chromeos/browser_options.js b/chrome/browser/resources/chromeos/browser_options.js
|
| index 239bac1b8b2fbd6d10aaad52dfa95a7f07a8cc3e..a79f9ffbed2cc98c2f65dced01367d93b7108d0a 100644
|
| --- a/chrome/browser/resources/chromeos/browser_options.js
|
| +++ b/chrome/browser/resources/chromeos/browser_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 BrowserOptions calls from
|
| @@ -12,16 +12,13 @@ cr.define('options', function() {
|
| * @constructor
|
| */
|
| function BrowserOptions() {
|
| - OptionsPage.call(this,
|
| - 'bluetooth',
|
| - '',
|
| - 'bluetooth-container');
|
| + Page.call(this, 'bluetooth', '', 'bluetooth-container');
|
| }
|
|
|
| cr.addSingletonGetter(BrowserOptions);
|
|
|
| BrowserOptions.prototype = {
|
| - __proto__: OptionsPage.prototype,
|
| + __proto__: Page.prototype,
|
| };
|
|
|
| BrowserOptions.showBluetoothSettings = function() {
|
|
|