Index: chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc |
diff --git a/chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc b/chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc |
index eee44dcb7d46e1b7af7854d6cb8377e02834306f..3ffc623030dc02f9c38bf6afd4ea765df70f25d3 100644 |
--- a/chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc |
+++ b/chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc |
@@ -8,6 +8,7 @@ |
#include "chromeos/dbus/fake_bluetooth_adapter_client.h" |
#include "chromeos/dbus/fake_bluetooth_agent_manager_client.h" |
#include "chromeos/dbus/fake_bluetooth_device_client.h" |
+#include "chromeos/dbus/fake_bluetooth_input_client.h" |
#include "chromeos/dbus/fake_bluetooth_profile_manager_client.h" |
#include "chromeos/dbus/ibus/mock_ibus_client.h" |
#include "chromeos/dbus/ibus/mock_ibus_config_client.h" |
@@ -22,6 +23,7 @@ MockDBusThreadManagerWithoutGMock::MockDBusThreadManagerWithoutGMock() |
: fake_bluetooth_adapter_client_(new FakeBluetoothAdapterClient()), |
fake_bluetooth_agent_manager_client_(new FakeBluetoothAgentManagerClient()), |
fake_bluetooth_device_client_(new FakeBluetoothDeviceClient()), |
+ fake_bluetooth_input_client_(new FakeBluetoothInputClient()), |
fake_bluetooth_profile_manager_client_( |
new FakeBluetoothProfileManagerClient()), |
mock_ibus_client_(new MockIBusClient), |
@@ -127,6 +129,11 @@ ExperimentalBluetoothDeviceClient* |
return fake_bluetooth_device_client_.get(); |
} |
+ExperimentalBluetoothInputClient* |
+ MockDBusThreadManagerWithoutGMock::GetExperimentalBluetoothInputClient() { |
+ return fake_bluetooth_input_client_.get(); |
+} |
+ |
ExperimentalBluetoothProfileManagerClient* |
MockDBusThreadManagerWithoutGMock:: |
GetExperimentalBluetoothProfileManagerClient() { |