Index: remoting/host/host_mock_objects.cc |
diff --git a/remoting/host/host_mock_objects.cc b/remoting/host/host_mock_objects.cc |
index 2fa3d8f3a798900699ffbc724cf549b5ac1e6124..881683df2a708700d44c98b910df0313f49f482f 100644 |
--- a/remoting/host/host_mock_objects.cc |
+++ b/remoting/host/host_mock_objects.cc |
@@ -64,7 +64,8 @@ MockDisconnectWindow::MockDisconnectWindow() {} |
MockDisconnectWindow::~MockDisconnectWindow() {} |
-scoped_ptr<DisconnectWindow> DisconnectWindow::Create() { |
+scoped_ptr<DisconnectWindow> DisconnectWindow::Create( |
+ const UiStrings* ui_strings) { |
return scoped_ptr<DisconnectWindow>(new MockDisconnectWindow()); |
} |
@@ -72,7 +73,7 @@ MockContinueWindow::MockContinueWindow() {} |
MockContinueWindow::~MockContinueWindow() {} |
-scoped_ptr<ContinueWindow> ContinueWindow::Create() { |
+scoped_ptr<ContinueWindow> ContinueWindow::Create(const UiStrings* ui_strings) { |
return scoped_ptr<ContinueWindow>(new MockContinueWindow()); |
} |