Index: remoting/host/host_mock_objects.h |
diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h |
index 93ef0d696809a13251754715f2a3bdbef1fe971d..4ca939d5d92b61833e0ead61ac86d460cb40415f 100644 |
--- a/remoting/host/host_mock_objects.h |
+++ b/remoting/host/host_mock_objects.h |
@@ -14,7 +14,6 @@ |
#include "remoting/host/event_executor.h" |
#include "remoting/host/host_status_observer.h" |
#include "remoting/host/local_input_monitor.h" |
-#include "remoting/host/ui_strings.h" |
#include "remoting/proto/control.pb.h" |
#include "testing/gmock/include/gmock/gmock.h" |
@@ -55,8 +54,7 @@ class MockDisconnectWindow : public DisconnectWindow { |
MockDisconnectWindow(); |
virtual ~MockDisconnectWindow(); |
- MOCK_METHOD3(Show, bool(const UiStrings& ui_strings, |
- const base::Closure& disconnect_callback, |
+ MOCK_METHOD2(Show, bool(const base::Closure& disconnect_callback, |
const std::string& username)); |
MOCK_METHOD0(Hide, void()); |
}; |
@@ -76,8 +74,7 @@ class MockContinueWindow : public ContinueWindow { |
MockContinueWindow(); |
virtual ~MockContinueWindow(); |
- MOCK_METHOD2(Show, void( |
- remoting::ChromotingHost* host, |
+ MOCK_METHOD1(Show, void( |
const remoting::ContinueWindow::ContinueSessionCallback& callback)); |
MOCK_METHOD0(Hide, void()); |
}; |