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

Side by Side Diff: device/bluetooth/bluez/bluetooth_gatt_service_bluez.h

Issue 1915803002: Bluetooth class changes for implementing local GATT attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_
6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_ 6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_
7 7
8 #include <map>
9 #include <string> 8 #include <string>
10 #include <vector>
11 9
12 #include "base/macros.h" 10 #include "base/macros.h"
13 #include "dbus/object_path.h" 11 #include "dbus/object_path.h"
14 #include "device/bluetooth/bluetooth_gatt_service.h" 12 #include "device/bluetooth/bluetooth_gatt_service.h"
15 13
16 namespace bluez { 14 namespace bluez {
17 15
18 class BluetoothAdapterBlueZ; 16 class BluetoothAdapterBlueZ;
19 class BluetoothDeviceBlueZ; 17 class BluetoothDeviceBlueZ;
20 18
(...skipping 27 matching lines...) Expand all
48 // The adapter associated with this service. It's ok to store a raw pointer 46 // The adapter associated with this service. It's ok to store a raw pointer
49 // here since |adapter_| indirectly owns this instance. 47 // here since |adapter_| indirectly owns this instance.
50 BluetoothAdapterBlueZ* adapter_; 48 BluetoothAdapterBlueZ* adapter_;
51 49
52 DISALLOW_COPY_AND_ASSIGN(BluetoothGattServiceBlueZ); 50 DISALLOW_COPY_AND_ASSIGN(BluetoothGattServiceBlueZ);
53 }; 51 };
54 52
55 } // namespace bluez 53 } // namespace bluez
56 54
57 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_ 55 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698