OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "extensions/browser/extension_function.h" | 10 #include "extensions/browser/extension_function.h" |
11 | 11 |
12 namespace device { | 12 namespace device { |
13 | 13 |
14 class BluetoothAdapter; | 14 class BluetoothAdapter; |
15 | 15 |
16 } // namespace device | 16 } // namespace device |
17 | 17 |
18 namespace extensions { | 18 namespace extensions { |
19 | |
20 namespace api { | 19 namespace api { |
21 | 20 |
22 // Base class for bluetooth extension functions. This class initializes | 21 // Base class for bluetooth extension functions. This class initializes |
23 // bluetooth adapter and calls DoWork() implemented by individual bluetooth | 22 // bluetooth adapter and calls (on the UI thread) DoWork() implemented by |
24 // extension functions. | 23 // individual bluetooth extension functions. |
25 class BluetoothExtensionFunction : public UIThreadExtensionFunction { | 24 class BluetoothExtensionFunction : public UIThreadExtensionFunction { |
26 public: | 25 public: |
27 BluetoothExtensionFunction(); | 26 BluetoothExtensionFunction(); |
28 | 27 |
29 protected: | 28 protected: |
30 virtual ~BluetoothExtensionFunction(); | 29 virtual ~BluetoothExtensionFunction(); |
31 | 30 |
32 // ExtensionFunction: | 31 // ExtensionFunction: |
33 virtual bool RunImpl() OVERRIDE; | 32 virtual bool RunImpl() OVERRIDE; |
34 | 33 |
35 private: | 34 private: |
36 void RunOnAdapterReady(scoped_refptr<device::BluetoothAdapter> adapter); | 35 void RunOnAdapterReady(scoped_refptr<device::BluetoothAdapter> adapter); |
37 | 36 |
38 // Implemented by individual bluetooth extension functions, called | 37 // Implemented by individual bluetooth extension functions, called |
39 // automatically once |adapter| has been initialized. | 38 // automatically on the UI thread once |adapter| has been initialized. |
40 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0; | 39 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0; |
41 | 40 |
42 DISALLOW_COPY_AND_ASSIGN(BluetoothExtensionFunction); | 41 DISALLOW_COPY_AND_ASSIGN(BluetoothExtensionFunction); |
43 }; | 42 }; |
44 | 43 |
45 } // namespace api | 44 } // namespace api |
46 | |
47 } // namespace extensions | 45 } // namespace extensions |
48 | 46 |
49 #endif // CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_
H_ | 47 #endif // CHROME_BROWSER_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_EXTENSION_FUNCTION_
H_ |
OLD | NEW |