summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_mock_objects.cc
diff options
context:
space:
mode:
authoralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-16 20:30:07 +0000
committeralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-16 20:30:07 +0000
commitb47049a6e55ec20778869fd596694addb307aa75 (patch)
treec574c8db1a2851cec65dd0c559d79a6153033395 /remoting/host/host_mock_objects.cc
parent5b5dc341eeaf170ad4aa6d6ba98f8e97c47211dd (diff)
downloadchromium_src-b47049a6e55ec20778869fd596694addb307aa75.zip
chromium_src-b47049a6e55ec20778869fd596694addb307aa75.tar.gz
chromium_src-b47049a6e55ec20778869fd596694addb307aa75.tar.bz2
Moved the localized strings from ChromotinHost to HostUserInterface, closer to the UI objects that consume them. Removed a dependency on ChromotingHost from the continue window UI wrapper.
BUG=104544 Review URL: https://chromiumcodereview.appspot.com/11886051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177207 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_mock_objects.cc')
-rw-r--r--remoting/host/host_mock_objects.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/remoting/host/host_mock_objects.cc b/remoting/host/host_mock_objects.cc
index 2fa3d8f..881683d 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());
}