Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5874)

Unified Diff: chrome/browser/resources/chromeos/fake_bluetooth_overlay_parent.js

Issue 410293004: Split OptionsPage into Page and PageManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ugh just no Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « chrome/browser/resources/chromeos/certificate_manager_dialog.js ('k') | chrome/browser/resources/chromeos/proxy_settings.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698