summaryrefslogtreecommitdiffstats
path: root/remoting/host
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host')
-rw-r--r--remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc3
-rw-r--r--remoting/host/win/worker_process_launcher_unittest.cc9
2 files changed, 8 insertions, 4 deletions
diff --git a/remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc b/remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc
index bea275e..bb7a29c 100644
--- a/remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc
+++ b/remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc
@@ -132,7 +132,8 @@ TEST_F(It2MeConfirmationDialogProxyTest, Show) {
.WillOnce(
InvokeWithoutArgs(
CreateFunctor(
- dialog(), &StubIt2MeConfirmationDialog::ReportResult,
+ &StubIt2MeConfirmationDialog::ReportResult,
+ base::Unretained(dialog()),
It2MeConfirmationDialog::Result::CANCEL)));
EXPECT_CALL(callback_target,
diff --git a/remoting/host/win/worker_process_launcher_unittest.cc b/remoting/host/win/worker_process_launcher_unittest.cc
index 840c2d5..ba27372 100644
--- a/remoting/host/win/worker_process_launcher_unittest.cc
+++ b/remoting/host/win/worker_process_launcher_unittest.cc
@@ -424,7 +424,8 @@ TEST_F(WorkerProcessLauncherTest, Restart) {
EXPECT_CALL(server_listener_, OnChannelConnected(_))
.Times(2)
.WillOnce(InvokeWithoutArgs(CreateFunctor(
- this, &WorkerProcessLauncherTest::TerminateWorker,
+ &WorkerProcessLauncherTest::TerminateWorker,
+ base::Unretained(this),
CONTROL_C_EXIT)))
.WillOnce(InvokeWithoutArgs(this,
&WorkerProcessLauncherTest::StopWorker));
@@ -470,7 +471,8 @@ TEST_F(WorkerProcessLauncherTest, PermanentError) {
EXPECT_CALL(server_listener_, OnChannelConnected(_))
.Times(1)
.WillOnce(InvokeWithoutArgs(CreateFunctor(
- this, &WorkerProcessLauncherTest::TerminateWorker,
+ &WorkerProcessLauncherTest::TerminateWorker,
+ base::Unretained(this),
kMinPermanentErrorExitCode)));
EXPECT_CALL(server_listener_, OnPermanentError(_))
.Times(1)
@@ -498,7 +500,8 @@ TEST_F(WorkerProcessLauncherTest, Crash) {
EXPECT_CALL(client_listener_, OnCrash(_, _, _))
.Times(1)
.WillOnce(InvokeWithoutArgs(CreateFunctor(
- this, &WorkerProcessLauncherTest::TerminateWorker,
+ &WorkerProcessLauncherTest::TerminateWorker,
+ base::Unretained(this),
EXCEPTION_BREAKPOINT)));
StartWorker();