| 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_BLUETOOTH_REMOTE_GATT_SERVICE_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "device/bluetooth/bluetooth_export.h" | 12 #include "device/bluetooth/bluetooth_export.h" |
| 13 #include "device/bluetooth/bluetooth_gatt_service.h" | 13 #include "device/bluetooth/bluetooth_gatt_service.h" |
| 14 #include "device/bluetooth/bluetooth_remote_gatt_characteristic.h" | |
| 15 | 14 |
| 16 namespace device { | 15 namespace device { |
| 17 | 16 |
| 18 class BluetoothDevice; | 17 class BluetoothDevice; |
| 19 class BluetoothRemoteGattCharacteristic; | 18 class BluetoothRemoteGattCharacteristic; |
| 20 class BluetoothRemoteGattDescriptor; | 19 class BluetoothRemoteGattDescriptor; |
| 21 | 20 |
| 22 // BluetoothRemoteGattService represents a remote GATT service. | 21 // BluetoothRemoteGattService represents a remote GATT service. |
| 23 // | 22 // |
| 24 // Instances of the BluetoothRemoteGATTService class are used to represent GATT | 23 // Instances of the BluetoothRemoteGATTService class are used to represent GATT |
| (...skipping 30 matching lines...) Expand all Loading... |
| 55 protected: | 54 protected: |
| 56 BluetoothRemoteGattService(); | 55 BluetoothRemoteGattService(); |
| 57 | 56 |
| 58 private: | 57 private: |
| 59 DISALLOW_COPY_AND_ASSIGN(BluetoothRemoteGattService); | 58 DISALLOW_COPY_AND_ASSIGN(BluetoothRemoteGattService); |
| 60 }; | 59 }; |
| 61 | 60 |
| 62 } // namespace device | 61 } // namespace device |
| 63 | 62 |
| 64 #endif // DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ | 63 #endif // DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ |
| OLD | NEW |