Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: remoting/host/host_mock_objects.cc

Issue 11886051: Turned UiStrings into a singleton so that the continue window does not depend on ChromotingHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/host_user_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/host_user_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698