| Index: remoting/host/setup/me2me_native_messaging_host_unittest.cc
|
| diff --git a/remoting/host/setup/me2me_native_messaging_host_unittest.cc b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
|
| index a2b5fb151e9d57f81854236b5717cf9b8ae01dac..0d0f2af272a35c02bf57b2a6defdc1dd1d09445c 100644
|
| --- a/remoting/host/setup/me2me_native_messaging_host_unittest.cc
|
| +++ b/remoting/host/setup/me2me_native_messaging_host_unittest.cc
|
| @@ -140,6 +140,8 @@ class MockDaemonControllerDelegate : public DaemonController::Delegate {
|
| // DaemonController::Delegate interface.
|
| virtual DaemonController::State GetState() OVERRIDE;
|
| virtual scoped_ptr<base::DictionaryValue> GetConfig() OVERRIDE;
|
| + virtual void InstallHost(
|
| + const DaemonController::CompletionCallback& done) OVERRIDE;
|
| virtual void SetConfigAndStart(
|
| scoped_ptr<base::DictionaryValue> config,
|
| bool consent,
|
| @@ -168,6 +170,11 @@ scoped_ptr<base::DictionaryValue> MockDaemonControllerDelegate::GetConfig() {
|
| return scoped_ptr<base::DictionaryValue>(new base::DictionaryValue());
|
| }
|
|
|
| +void MockDaemonControllerDelegate::InstallHost(
|
| + const DaemonController::CompletionCallback& done) {
|
| + done.Run(DaemonController::RESULT_OK);
|
| +}
|
| +
|
| void MockDaemonControllerDelegate::SetConfigAndStart(
|
| scoped_ptr<base::DictionaryValue> config,
|
| bool consent,
|
|
|