Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: chromeos/dbus/bluetooth_out_of_band_client.h

Issue 11075006: Moved bluetooth adapter files to device/bluetooth/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: renamed 'bluetooth' target to 'device_bluetooth'. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698