| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ |
| 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 16 #include "base/values.h" | 17 #include "base/values.h" |
| 17 #include "dbus/object_path.h" | 18 #include "dbus/object_path.h" |
| 18 #include "dbus/property.h" | 19 #include "dbus/property.h" |
| 19 #include "device/bluetooth/bluetooth_export.h" | 20 #include "device/bluetooth/bluetooth_export.h" |
| 20 #include "device/bluetooth/dbus/bluez_dbus_client.h" | 21 #include "device/bluetooth/dbus/bluez_dbus_client.h" |
| 21 | 22 |
| 22 namespace bluez { | 23 namespace bluez { |
| 23 | 24 |
| 24 // BluetoothAdapterClient is used to communicate with objects representing | 25 // BluetoothAdapterClient is used to communicate with objects representing |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 protected: | 180 protected: |
| 180 BluetoothAdapterClient(); | 181 BluetoothAdapterClient(); |
| 181 | 182 |
| 182 private: | 183 private: |
| 183 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterClient); | 184 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterClient); |
| 184 }; | 185 }; |
| 185 | 186 |
| 186 } // namespace bluez | 187 } // namespace bluez |
| 187 | 188 |
| 188 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ | 189 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_ADAPTER_CLIENT_H_ |
| OLD | NEW |