Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Side by Side Diff: device/bluetooth/bluetooth_adapter_factory.h

Issue 1415573014: Reland "Add Linux support for the Bluetooth API" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build fix. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 #if defined(OS_CHROMEOS) 32 #if defined(OS_CHROMEOS) || defined(OS_LINUX)
33 // Calls |BluetoothAdapter::Shutdown| on the adapter if 33 // Calls |BluetoothAdapter::Shutdown| on the adapter if
34 // present. 34 // present.
35 static void Shutdown(); 35 static void Shutdown();
36 #endif 36 #endif
37 37
38 // Sets the shared instance of the default adapter for testing purposes only, 38 // Sets the shared instance of the default adapter for testing purposes only,
39 // no reference is retained after completion of the call, removing the last 39 // no reference is retained after completion of the call, removing the last
40 // reference will reset the factory. 40 // reference will reset the factory.
41 static void SetAdapterForTesting(scoped_refptr<BluetoothAdapter> adapter); 41 static void SetAdapterForTesting(scoped_refptr<BluetoothAdapter> adapter);
42 42
43 // Returns true iff the implementation has a (non-NULL) shared instance of the 43 // Returns true iff the implementation has a (non-NULL) shared instance of the
44 // adapter. Exposed for testing. 44 // adapter. Exposed for testing.
45 static bool HasSharedInstanceForTesting(); 45 static bool HasSharedInstanceForTesting();
46 }; 46 };
47 47
48 } // namespace device 48 } // namespace device
49 49
50 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_ 50 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698