summaryrefslogtreecommitdiffstats
path: root/remoting/host/event_executor_win.cc
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 20:35:26 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-30 20:35:26 +0000
commitbcad2686e10ff2ff31c21e2cc77bd1cee6482e9e (patch)
tree6000696a564ee1d3c005c63947d38e9486d75143 /remoting/host/event_executor_win.cc
parenta31de5292f5facfeec460cd2defc0b131851fb7a (diff)
downloadchromium_src-bcad2686e10ff2ff31c21e2cc77bd1cee6482e9e.zip
chromium_src-bcad2686e10ff2ff31c21e2cc77bd1cee6482e9e.tar.gz
chromium_src-bcad2686e10ff2ff31c21e2cc77bd1cee6482e9e.tar.bz2
Move us fully from gfx:: over to skia types for consistency.
BUG=92085 TEST=BUILD Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=103523 Review URL: http://codereview.chromium.org/7992011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103533 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/event_executor_win.cc')
-rw-r--r--remoting/host/event_executor_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/event_executor_win.cc b/remoting/host/event_executor_win.cc
index bf6fead..ebedf25 100644
--- a/remoting/host/event_executor_win.cc
+++ b/remoting/host/event_executor_win.cc
@@ -109,7 +109,7 @@ void EventExecutorWin::HandleMouse(const MouseEvent& event) {
INPUT input;
input.type = INPUT_MOUSE;
input.mi.time = 0;
- gfx::Size screen_size = capturer_->size_most_recent();
+ SkISize screen_size = capturer_->size_most_recent();
if ((screen_size.width() > 0) && (screen_size.height() > 0)) {
input.mi.dx = static_cast<int>((x * 65535) / screen_size.width());
input.mi.dy = static_cast<int>((y * 65535) / screen_size.height());