| 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" |
| 14 | 15 |
| 15 namespace device { | 16 namespace device { |
| 16 | 17 |
| 17 class BluetoothDevice; | 18 class BluetoothDevice; |
| 18 class BluetoothRemoteGattCharacteristic; | 19 class BluetoothRemoteGattCharacteristic; |
| 19 class BluetoothRemoteGattDescriptor; | 20 class BluetoothRemoteGattDescriptor; |
| 20 | 21 |
| 21 // BluetoothRemoteGattService represents a remote GATT service. | 22 // BluetoothRemoteGattService represents a remote GATT service. |
| 22 // | 23 // |
| 23 // Instances of the BluetoothRemoteGATTService class are used to represent GATT | 24 // Instances of the BluetoothRemoteGATTService class are used to represent GATT |
| (...skipping 30 matching lines...) Expand all Loading... |
| 54 protected: | 55 protected: |
| 55 BluetoothRemoteGattService(); | 56 BluetoothRemoteGattService(); |
| 56 | 57 |
| 57 private: | 58 private: |
| 58 DISALLOW_COPY_AND_ASSIGN(BluetoothRemoteGattService); | 59 DISALLOW_COPY_AND_ASSIGN(BluetoothRemoteGattService); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace device | 62 } // namespace device |
| 62 | 63 |
| 63 #endif // DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ | 64 #endif // DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_H_ |
| OLD | NEW |