| Index: chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js
|
| diff --git a/chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js b/chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js
|
| index c98371a074529a13dd08622c9b26c1959a3f2b8e..b6196af541b292852750cee767aca4cc09902d0d 100644
|
| --- a/chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js
|
| +++ b/chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js
|
| @@ -3,23 +3,22 @@
|
| // found in the LICENSE file.
|
|
|
| cr.define('options', function() {
|
| - var OptionsPage = options.OptionsPage;
|
| + var Page = cr.ui.pageManager.Page;
|
| + var PageManager = cr.ui.pageManager.PageManager;
|
|
|
| /**
|
| * Encapsulated a fake parent page for bluetooth overlay page used by Web UI.
|
| * @constructor
|
| */
|
| function FakeBluetoothOverlayParent(model) {
|
| - OptionsPage.call(this, 'bluetooth',
|
| - '',
|
| - 'bluetooth-container');
|
| + Page.call(this, 'bluetooth', '', 'bluetooth-container');
|
| }
|
|
|
| cr.addSingletonGetter(FakeBluetoothOverlayParent);
|
|
|
| FakeBluetoothOverlayParent.prototype = {
|
| - // Inherit FakeBluetoothOverlayParent from OptionsPage.
|
| - __proto__: OptionsPage.prototype,
|
| + // Inherit FakeBluetoothOverlayParent from Page.
|
| + __proto__: Page.prototype,
|
| };
|
|
|
| // Export
|
|
|