Index: chromeos/dbus/mock_dbus_thread_manager.cc |
diff --git a/chromeos/dbus/mock_dbus_thread_manager.cc b/chromeos/dbus/mock_dbus_thread_manager.cc |
index 2db9c66788b216ca4fc51cbfbfb4546e359bdf3f..d4be3730df5bb391578d23e2304ded508578df93 100644 |
--- a/chromeos/dbus/mock_dbus_thread_manager.cc |
+++ b/chromeos/dbus/mock_dbus_thread_manager.cc |
@@ -11,6 +11,7 @@ |
#include "chromeos/dbus/mock_bluetooth_input_client.h" |
#include "chromeos/dbus/mock_bluetooth_manager_client.h" |
#include "chromeos/dbus/mock_bluetooth_node_client.h" |
+#include "chromeos/dbus/mock_bluetooth_out_of_band_client.h" |
#include "chromeos/dbus/mock_cashew_client.h" |
#include "chromeos/dbus/mock_cros_disks_client.h" |
#include "chromeos/dbus/mock_cryptohome_client.h" |
@@ -43,6 +44,7 @@ MockDBusThreadManager::MockDBusThreadManager() |
mock_bluetooth_input_client_(new MockBluetoothInputClient), |
mock_bluetooth_manager_client_(new MockBluetoothManagerClient), |
mock_bluetooth_node_client_(new MockBluetoothNodeClient), |
+ mock_bluetooth_out_of_band_client_(new MockBluetoothOutOfBandClient), |
mock_cashew_client_(new MockCashewClient), |
mock_cros_disks_client_(new MockCrosDisksClient), |
mock_cryptohome_client_(new MockCryptohomeClient), |
@@ -74,6 +76,8 @@ MockDBusThreadManager::MockDBusThreadManager() |
.WillRepeatedly(Return(mock_bluetooth_manager_client())); |
EXPECT_CALL(*this, GetBluetoothNodeClient()) |
.WillRepeatedly(Return(mock_bluetooth_node_client_.get())); |
+ EXPECT_CALL(*this, GetBluetoothOutOfBandClient()) |
+ .WillRepeatedly(Return(mock_bluetooth_out_of_band_client_.get())); |
EXPECT_CALL(*this, GetCashewClient()) |
.WillRepeatedly(Return(mock_cashew_client())); |
EXPECT_CALL(*this, GetCrosDisksClient()) |