1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_API_BLUETOOTH_LOW_ENERGY_BLUETOOTH_LOW_ENERGY_CONNECTION_H_
6 #define EXTENSIONS_BROWSER_API_BLUETOOTH_LOW_ENERGY_BLUETOOTH_LOW_ENERGY_CONNECTION_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "device/bluetooth/bluetooth_gatt_connection.h"
10 #include "extensions/browser/api/api_resource.h"
11 #include "extensions/browser/api/api_resource_manager.h"
13 namespace extensions
{
15 // An ApiResource wrapper for a device::BluetoothGattConnection.
16 class BluetoothLowEnergyConnection
: public ApiResource
{
18 explicit BluetoothLowEnergyConnection(
20 const std::string
& owner_extension_id
,
21 scoped_ptr
<device::BluetoothGattConnection
> connection
);
22 ~BluetoothLowEnergyConnection() override
;
24 // Returns a pointer to the underlying connection object.
25 device::BluetoothGattConnection
* GetConnection() const;
27 // ApiResource override.
28 bool IsPersistent() const override
;
30 // This resource should be managed on the UI thread.
31 static const content::BrowserThread::ID kThreadId
=
32 content::BrowserThread::UI
;
35 friend class ApiResourceManager
<BluetoothLowEnergyConnection
>;
36 static const char* service_name() {
37 return "BluetoothLowEnergyConnectionManager";
40 // True, if this resource should be persistent.
43 // The connection is owned by this instance and will automatically disconnect
45 scoped_ptr
<device::BluetoothGattConnection
> connection_
;
47 DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyConnection
);
50 } // namespace extensions
52 #endif // EXTENSIONS_BROWSER_API_BLUETOOTH_LOW_ENERGY_BLUETOOTH_LOW_ENERGY_CONNECTION_H_