| 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_forward.h" | 
|   13 #include "base/macros.h" |   12 #include "base/macros.h" | 
|   14 #include "dbus/bus.h" |   13 #include "dbus/bus.h" | 
|   15 #include "dbus/object_path.h" |   14 #include "dbus/object_path.h" | 
|   16 #include "device/bluetooth/bluetooth_export.h" |   15 #include "device/bluetooth/bluetooth_export.h" | 
|   17  |   16  | 
|   18 namespace bluez { |   17 namespace bluez { | 
|   19  |   18  | 
|   20 // BluetoothAgentServiceProvider is used to provide a D-Bus object that |   19 // BluetoothAgentServiceProvider is used to provide a D-Bus object that | 
|   21 // the bluetooth daemon can communicate with during a remote device pairing |   20 // the bluetooth daemon can communicate with during a remote device pairing | 
|   22 // request. |   21 // request. | 
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  171  protected: |  170  protected: | 
|  172   BluetoothAgentServiceProvider(); |  171   BluetoothAgentServiceProvider(); | 
|  173  |  172  | 
|  174  private: |  173  private: | 
|  175   DISALLOW_COPY_AND_ASSIGN(BluetoothAgentServiceProvider); |  174   DISALLOW_COPY_AND_ASSIGN(BluetoothAgentServiceProvider); | 
|  176 }; |  175 }; | 
|  177  |  176  | 
|  178 }  // namespace bluez |  177 }  // namespace bluez | 
|  179  |  178  | 
|  180 #endif  // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ |  179 #endif  // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_AGENT_SERVICE_PROVIDER_H_ | 
| OLD | NEW |