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

Unified Diff: remoting/host/ipc_desktop_environment_unittest.cc

Issue 12678008: Reworked the plumbing required to pass the client resolution to the desktop resizer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback Created 7 years, 9 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/ipc_desktop_environment.cc ('k') | remoting/host/ipc_session_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_desktop_environment_unittest.cc
diff --git a/remoting/host/ipc_desktop_environment_unittest.cc b/remoting/host/ipc_desktop_environment_unittest.cc
index f93e1649267ce1312f7fdf8b1a7db32d6ca6e40e..2ed434cfe9cf694ca7ebc52953d36caa26abc1c0 100644
--- a/remoting/host/ipc_desktop_environment_unittest.cc
+++ b/remoting/host/ipc_desktop_environment_unittest.cc
@@ -51,7 +51,7 @@ class FakeDaemonSender : public IPC::Sender {
// IPC::Sender implementation.
virtual bool Send(IPC::Message* message) OVERRIDE;
- MOCK_METHOD3(ConnectTerminal, void(int, const DesktopSessionParams&, bool));
+ MOCK_METHOD3(ConnectTerminal, void(int, const ScreenResolution&, bool));
MOCK_METHOD1(DisconnectTerminal, void(int));
private:
@@ -117,7 +117,7 @@ class IpcDesktopEnvironmentTest : public testing::Test {
virtual void SetUp() OVERRIDE;
void ConnectTerminal(int terminal_id,
- const DesktopSessionParams& params,
+ const ScreenResolution& resolution,
bool virtual_terminal);
void DisconnectTerminal(int terminal_id);
@@ -264,7 +264,7 @@ void IpcDesktopEnvironmentTest::SetUp() {
void IpcDesktopEnvironmentTest::ConnectTerminal(
int terminal_id,
- const DesktopSessionParams& params,
+ const ScreenResolution& resolution,
bool virtual_terminal) {
EXPECT_NE(terminal_id_, terminal_id);
« no previous file with comments | « remoting/host/ipc_desktop_environment.cc ('k') | remoting/host/ipc_session_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698