Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / bluetooth_options.js
blob150592aab3a782004be343d02b2f4b9961936e22
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   /** @const */ var Page = cr.ui.pageManager.Page;
8   /**
9    * Encapsulated handling of the BluetoothOptions calls from
10    * BluetoothOptionsHandler that is registered by the webUI,
11    * ie, BluetoothPairingUI.
12    * @constructor
13    */
14   function BluetoothOptions() {
15     Page.call(this, 'bluetooth', '', 'bluetooth-container');
16   }
18   cr.addSingletonGetter(BluetoothOptions);
20   BluetoothOptions.prototype = {
21     __proto__: Page.prototype,
22   };
24   BluetoothOptions.updateDiscovery = function() {
25   };
27   // Export
28   return {
29     BluetoothOptions: BluetoothOptions
30   };
31 });