Index: device/bluetooth/dbus/fake_bluetooth_input_client.h |
diff --git a/chromeos/dbus/fake_bluetooth_input_client.h b/device/bluetooth/dbus/fake_bluetooth_input_client.h |
similarity index 86% |
rename from chromeos/dbus/fake_bluetooth_input_client.h |
rename to device/bluetooth/dbus/fake_bluetooth_input_client.h |
index 56633ffd71ec0b2fccd3b85b683e5474f2130b91..49cab4ec6992f6d8b24fac73d4cb3922c09f72eb 100644 |
--- a/chromeos/dbus/fake_bluetooth_input_client.h |
+++ b/device/bluetooth/dbus/fake_bluetooth_input_client.h |
@@ -8,20 +8,19 @@ |
#include "base/callback.h" |
#include "base/observer_list.h" |
#include "chromeos/chromeos_export.h" |
-#include "chromeos/dbus/bluetooth_input_client.h" |
#include "dbus/object_path.h" |
#include "dbus/property.h" |
+#include "device/bluetooth/dbus/bluetooth_input_client.h" |
-namespace chromeos { |
+namespace bluez { |
// FakeBluetoothInputClient simulates the behavior of the Bluetooth Daemon |
// input device objects and is used both in test cases in place of a mock and on |
// the Linux desktop. |
-class CHROMEOS_EXPORT FakeBluetoothInputClient |
- : public BluetoothInputClient { |
+class CHROMEOS_EXPORT FakeBluetoothInputClient : public BluetoothInputClient { |
public: |
struct Properties : public BluetoothInputClient::Properties { |
- explicit Properties(const PropertyChangedCallback & callback); |
+ explicit Properties(const PropertyChangedCallback& callback); |
~Properties() override; |
// dbus::PropertySet override |
@@ -51,7 +50,7 @@ class CHROMEOS_EXPORT FakeBluetoothInputClient |
const std::string& property_name); |
// Static properties we return. |
- typedef std::map<const dbus::ObjectPath, Properties *> PropertiesMap; |
+ typedef std::map<const dbus::ObjectPath, Properties*> PropertiesMap; |
PropertiesMap properties_map_; |
// List of observers interested in event notifications from us. |
@@ -60,6 +59,6 @@ class CHROMEOS_EXPORT FakeBluetoothInputClient |
DISALLOW_COPY_AND_ASSIGN(FakeBluetoothInputClient); |
}; |
-} // namespace chromeos |
+} // namespace bluez |
#endif // CHROMEOS_DBUS_FAKE_BLUETOOTH_INPUT_CLIENT_H_ |