| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |