Index: chromeos/dbus/bluetooth_out_of_band_client.h |
diff --git a/chromeos/dbus/bluetooth_out_of_band_client.h b/chromeos/dbus/bluetooth_out_of_band_client.h |
index 84685287aa8b320d66dea1b99ae6ad27b163c35c..e39cd61b20d7ae1dd00c40d3d700c3ae7f6c3193 100644 |
--- a/chromeos/dbus/bluetooth_out_of_band_client.h |
+++ b/chromeos/dbus/bluetooth_out_of_band_client.h |
@@ -16,9 +16,11 @@ namespace dbus { |
class Bus; |
} // namespace dbus |
-namespace chromeos { |
- |
+namespace device { |
struct BluetoothOutOfBandPairingData; |
+} // namespace device |
+ |
+namespace chromeos { |
// BluetoothOutOfBandClient is used to manage Out Of Band Pairing |
// Data for the local adapter and remote devices. |
@@ -26,7 +28,8 @@ class CHROMEOS_EXPORT BluetoothOutOfBandClient { |
public: |
virtual ~BluetoothOutOfBandClient(); |
- typedef base::Callback<void(const BluetoothOutOfBandPairingData& data, |
+ typedef base::Callback<void( |
+ const device::BluetoothOutOfBandPairingData& data, |
bool success)> DataCallback; |
typedef base::Callback<void(bool success)> SuccessCallback; |
@@ -41,7 +44,7 @@ class CHROMEOS_EXPORT BluetoothOutOfBandClient { |
virtual void AddRemoteData( |
const dbus::ObjectPath& object_path, |
const std::string& address, |
- const BluetoothOutOfBandPairingData& data, |
+ const device::BluetoothOutOfBandPairingData& data, |
const SuccessCallback& callback) = 0; |
// Clears the Out Of Band Pairing Data for the device at |address|, indicating |