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

Unified Diff: remoting/host/win/rdp_client_unittest.cc

Issue 112453002: Remove dependency on skia from remoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/win/rdp_client.cc ('k') | remoting/host/win/rdp_client_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/rdp_client_unittest.cc
diff --git a/remoting/host/win/rdp_client_unittest.cc b/remoting/host/win/rdp_client_unittest.cc
index 0c58a3fd5c5df65cec5414df6084ee746cf8ba2d..de755e4cba1dafe283976956ab98d12ed62c5645 100644
--- a/remoting/host/win/rdp_client_unittest.cc
+++ b/remoting/host/win/rdp_client_unittest.cc
@@ -20,6 +20,7 @@
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gmock_mutant.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
using testing::_;
using testing::AtMost;
@@ -161,9 +162,10 @@ TEST_F(RdpClientTest, Basic) {
.Times(AtMost(1))
.WillOnce(InvokeWithoutArgs(this, &RdpClientTest::CloseRdpClient));
- rdp_client_.reset(new RdpClient(task_runner_, task_runner_,
- SkISize::Make(kDefaultWidth, kDefaultHeight),
- terminal_id_, &event_handler_));
+ rdp_client_.reset(new RdpClient(
+ task_runner_, task_runner_,
+ webrtc::DesktopSize(kDefaultWidth, kDefaultHeight),
+ terminal_id_, &event_handler_));
task_runner_ = NULL;
run_loop_.Run();
« no previous file with comments | « remoting/host/win/rdp_client.cc ('k') | remoting/host/win/rdp_client_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698