| Index: chromeos/dbus/mock_dbus_thread_manager.h
|
| diff --git a/chromeos/dbus/mock_dbus_thread_manager.h b/chromeos/dbus/mock_dbus_thread_manager.h
|
| index 6a1a12d3ea7c02494067947259ec0567f13c3acc..9d0f0b7d706d786b28450066c9777fbfecdeb925 100644
|
| --- a/chromeos/dbus/mock_dbus_thread_manager.h
|
| +++ b/chromeos/dbus/mock_dbus_thread_manager.h
|
| @@ -23,6 +23,7 @@ class MockBluetoothDeviceClient;
|
| class MockBluetoothInputClient;
|
| class MockBluetoothManagerClient;
|
| class MockBluetoothNodeClient;
|
| +class MockBluetoothOutOfBandClient;
|
| class MockCashewClient;
|
| class MockCrosDisksClient;
|
| class MockCryptohomeClient;
|
| @@ -61,6 +62,7 @@ class MockDBusThreadManager : public DBusThreadManager {
|
| MOCK_METHOD0(GetBluetoothInputClient, BluetoothInputClient*(void));
|
| MOCK_METHOD0(GetBluetoothManagerClient, BluetoothManagerClient*(void));
|
| MOCK_METHOD0(GetBluetoothNodeClient, BluetoothNodeClient*(void));
|
| + MOCK_METHOD0(GetBluetoothOutOfBandClient, BluetoothOutOfBandClient*(void));
|
| MOCK_METHOD0(GetCashewClient, CashewClient*(void));
|
| MOCK_METHOD0(GetCrosDisksClient, CrosDisksClient*(void));
|
| MOCK_METHOD0(GetCryptohomeClient, CryptohomeClient*(void));
|
| @@ -98,6 +100,9 @@ class MockDBusThreadManager : public DBusThreadManager {
|
| MockBluetoothNodeClient* mock_bluetooth_node_client() {
|
| return mock_bluetooth_node_client_.get();
|
| }
|
| + MockBluetoothOutOfBandClient* mock_bluetooth_out_of_band_client() {
|
| + return mock_bluetooth_out_of_band_client_.get();
|
| + }
|
| MockCashewClient* mock_cashew_client() {
|
| return mock_cashew_client_.get();
|
| }
|
| @@ -168,6 +173,7 @@ class MockDBusThreadManager : public DBusThreadManager {
|
| scoped_ptr<MockBluetoothInputClient> mock_bluetooth_input_client_;
|
| scoped_ptr<MockBluetoothManagerClient> mock_bluetooth_manager_client_;
|
| scoped_ptr<MockBluetoothNodeClient> mock_bluetooth_node_client_;
|
| + scoped_ptr<MockBluetoothOutOfBandClient> mock_bluetooth_out_of_band_client_;
|
| scoped_ptr<MockCashewClient> mock_cashew_client_;
|
| scoped_ptr<MockCrosDisksClient> mock_cros_disks_client_;
|
| scoped_ptr<MockCryptohomeClient> mock_cryptohome_client_;
|
|
|