| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BLUEZ_DBUS_MANAGER_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUEZ_DBUS_MANAGER_H_ |
| 6 #define DEVICE_BLUETOOTH_DBUS_BLUEZ_DBUS_MANAGER_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_BLUEZ_DBUS_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "device/bluetooth/bluetooth_export.h" | 15 #include "device/bluetooth/bluetooth_export.h" |
| 16 #include "device/bluetooth/dbus/bluetooth_dbus_client_bundle.h" | 16 #include "device/bluetooth/dbus/bluetooth_dbus_client_bundle.h" |
| 17 | 17 |
| 18 namespace dbus { | 18 namespace dbus { |
| 19 class Bus; | 19 class Bus; |
| 20 class ObjectPath; | |
| 21 class Response; | 20 class Response; |
| 22 class ErrorResponse; | 21 class ErrorResponse; |
| 23 } // namespace dbus | 22 } // namespace dbus |
| 24 | 23 |
| 25 namespace bluez { | 24 namespace bluez { |
| 26 | 25 |
| 27 // Style Note: Clients are sorted by names. | 26 // Style Note: Clients are sorted by names. |
| 28 class BluetoothAdapterClient; | 27 class BluetoothAdapterClient; |
| 29 class BluetoothAgentManagerClient; | 28 class BluetoothAgentManagerClient; |
| 30 class BluetoothDeviceClient; | 29 class BluetoothDeviceClient; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 friend class BluezDBusManager; | 174 friend class BluezDBusManager; |
| 176 | 175 |
| 177 BluezDBusManagerSetter(); | 176 BluezDBusManagerSetter(); |
| 178 | 177 |
| 179 DISALLOW_COPY_AND_ASSIGN(BluezDBusManagerSetter); | 178 DISALLOW_COPY_AND_ASSIGN(BluezDBusManagerSetter); |
| 180 }; | 179 }; |
| 181 | 180 |
| 182 } // namespace bluez | 181 } // namespace bluez |
| 183 | 182 |
| 184 #endif // DEVICE_BLUETOOTH_DBUS_BLUEZ_DBUS_MANAGER_H_ | 183 #endif // DEVICE_BLUETOOTH_DBUS_BLUEZ_DBUS_MANAGER_H_ |
| OLD | NEW |