Chromium Code Reviews| 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_AGENT_SERVICE_PROVIDER_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ |
| 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <cstdint> |
| 9 | |
| 10 #include <string> | 9 #include <string> |
| 11 | 10 |
| 12 #include "base/callback.h" | 11 #include "base/callback.h" |
|
xiyuan
2016/06/22 15:53:06
move to cc since callback_forward.h is included.
rkc
2016/06/22 21:06:38
Done.
| |
| 12 #include "base/callback_forward.h" | |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "dbus/bus.h" | 14 #include "dbus/bus.h" |
| 15 #include "dbus/object_path.h" | 15 #include "dbus/object_path.h" |
| 16 #include "device/bluetooth/bluetooth_export.h" | 16 #include "device/bluetooth/bluetooth_export.h" |
| 17 | 17 |
| 18 namespace bluez { | 18 namespace bluez { |
| 19 | 19 |
| 20 // BluetoothAgentServiceProvider is used to provide a D-Bus object that | 20 // BluetoothAgentServiceProvider is used to provide a D-Bus object that |
| 21 // the bluetooth daemon can communicate with during a remote device pairing | 21 // the bluetooth daemon can communicate with during a remote device pairing |
| 22 // request. | 22 // request. |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 171 protected: | 171 protected: |
| 172 BluetoothAgentServiceProvider(); | 172 BluetoothAgentServiceProvider(); |
| 173 | 173 |
| 174 private: | 174 private: |
| 175 DISALLOW_COPY_AND_ASSIGN(BluetoothAgentServiceProvider); | 175 DISALLOW_COPY_AND_ASSIGN(BluetoothAgentServiceProvider); |
| 176 }; | 176 }; |
| 177 | 177 |
| 178 } // namespace bluez | 178 } // namespace bluez |
| 179 | 179 |
| 180 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ | 180 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ |
| OLD | NEW |