1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 cr
.define('options', function() {
6 var Page
= cr
.ui
.pageManager
.Page
;
7 var PageManager
= cr
.ui
.pageManager
.PageManager
;
10 * Encapsulated a fake parent page for bluetooth overlay page used by Web UI.
13 function FakeBluetoothOverlayParent(model
) {
14 Page
.call(this, 'bluetooth', '', 'bluetooth-container');
17 cr
.addSingletonGetter(FakeBluetoothOverlayParent
);
19 FakeBluetoothOverlayParent
.prototype = {
20 // Inherit FakeBluetoothOverlayParent from Page.
21 __proto__
: Page
.prototype,
26 FakeBluetoothOverlayParent
: FakeBluetoothOverlayParent