Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / fake_bluetooth_overlay_parent.js
blobb6196af541b292852750cee767aca4cc09902d0d
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;
9   /**
10    * Encapsulated a fake parent page for bluetooth overlay page used by Web UI.
11    * @constructor
12    */
13   function FakeBluetoothOverlayParent(model) {
14     Page.call(this, 'bluetooth', '', 'bluetooth-container');
15   }
17   cr.addSingletonGetter(FakeBluetoothOverlayParent);
19   FakeBluetoothOverlayParent.prototype = {
20     // Inherit FakeBluetoothOverlayParent from Page.
21     __proto__: Page.prototype,
22   };
24   // Export
25   return {
26     FakeBluetoothOverlayParent: FakeBluetoothOverlayParent
27   };
28 });