Chromium Code Reviews| 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 DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "device/bluetooth/bluetooth_adapter.h" | 10 #include "device/bluetooth/bluetooth_adapter.h" |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 // Returns true if the Bluetooth adapter is available for the current | 22 // Returns true if the Bluetooth adapter is available for the current |
| 23 // platform. | 23 // platform. |
| 24 static bool IsBluetoothAdapterAvailable(); | 24 static bool IsBluetoothAdapterAvailable(); |
| 25 | 25 |
| 26 // Returns the shared instance of the default adapter, creating and | 26 // Returns the shared instance of the default adapter, creating and |
| 27 // initializing it if necessary. |callback| is called with the adapter | 27 // initializing it if necessary. |callback| is called with the adapter |
| 28 // instance passed only once the adapter is fully initialized and ready to | 28 // instance passed only once the adapter is fully initialized and ready to |
| 29 // use. | 29 // use. |
| 30 static void GetAdapter(const AdapterCallback& callback); | 30 static void GetAdapter(const AdapterCallback& callback); |
| 31 | 31 |
| 32 // Shutdown the adapter, ending reliance on other objects, and resulting in | |
| 33 // the adapter's |IsPresent| returning false. | |
| 34 static void Shutdown(); | |
|
armansito
2015/01/14 19:52:43
Should this be ChromeOS only (i.e. within macros)?
scheib
2015/01/14 23:07:27
Done.
| |
| 35 | |
| 32 // Sets the shared instance of the default adapter for testing purposes only, | 36 // Sets the shared instance of the default adapter for testing purposes only, |
| 33 // no reference is retained after completion of the call, removing the last | 37 // no reference is retained after completion of the call, removing the last |
| 34 // reference will reset the factory. | 38 // reference will reset the factory. |
| 35 static void SetAdapterForTesting(scoped_refptr<BluetoothAdapter> adapter); | 39 static void SetAdapterForTesting(scoped_refptr<BluetoothAdapter> adapter); |
| 36 | 40 |
| 37 // Returns true iff the implementation has a (non-NULL) shared instance of the | 41 // Returns true iff the implementation has a (non-NULL) shared instance of the |
| 38 // adapter. Exposed for testing. | 42 // adapter. Exposed for testing. |
| 39 static bool HasSharedInstanceForTesting(); | 43 static bool HasSharedInstanceForTesting(); |
| 40 }; | 44 }; |
| 41 | 45 |
| 42 } // namespace device | 46 } // namespace device |
| 43 | 47 |
| 44 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ | 48 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ |
| OLD | NEW |