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

Unified Diff: remoting/host/client_session_control.h

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/client_session.cc ('k') | remoting/host/client_session_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_session_control.h
diff --git a/remoting/host/client_session_control.h b/remoting/host/client_session_control.h
index 5daf04c43ce87d8a24b6737db5c399617b6d1112..de446a6d375ae1d6a8d2349440529f4c9725f10d 100644
--- a/remoting/host/client_session_control.h
+++ b/remoting/host/client_session_control.h
@@ -6,7 +6,10 @@
#define REMOTING_HOST_CLIENT_SESSION_CONTROL_H_
#include "base/basictypes.h"
-#include "third_party/skia/include/core/SkPoint.h"
+
+namespace webrtc {
+class DesktopVector;
+} // namespace webrtc
namespace remoting {
@@ -25,7 +28,7 @@ class ClientSessionControl {
virtual void DisconnectSession() = 0;
// Called when local mouse movement is detected.
- virtual void OnLocalMouseMoved(const SkIPoint& position) = 0;
+ virtual void OnLocalMouseMoved(const webrtc::DesktopVector& position) = 0;
// Disables or enables the remote input in the client session.
virtual void SetDisableInputs(bool disable_inputs) = 0;
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/client_session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698