blob: 7ddff60c59ac4cdd0efe6a3f5b404b36b39e3bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
cr.define('options', function() {
/** @const */ var OptionsPage = options.OptionsPage;
/**
* Encapsulated handling of the BluetoothOptions calls from
* BluetoothOptionsHandler that is registered by the webUI,
* ie, BluetoothPairingUI.
* @constructor
*/
function BluetoothOptions() {
OptionsPage.call(this,
'bluetooth',
'',
'bluetooth-container');
}
cr.addSingletonGetter(BluetoothOptions);
BluetoothOptions.prototype = {
__proto__: OptionsPage.prototype,
/** @override */
initializePage: function() {
OptionsPage.prototype.initializePage.call(this);
},
};
BluetoothOptions.updateDiscovery = function() {
};
// Export
return {
BluetoothOptions: BluetoothOptions
};
});
|