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

Unified Diff: remoting/host/fake_mouse_cursor_monitor.h

Issue 92473002: Use webrtc::MouseCursorMonitor for cursor shapes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux build Created 6 years, 4 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/fake_desktop_environment.cc ('k') | remoting/host/fake_mouse_cursor_monitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/fake_mouse_cursor_monitor.h
diff --git a/remoting/host/fake_mouse_cursor_monitor.h b/remoting/host/fake_mouse_cursor_monitor.h
new file mode 100644
index 0000000000000000000000000000000000000000..0b46d727ede1f9d253e226be787cd3636eac063e
--- /dev/null
+++ b/remoting/host/fake_mouse_cursor_monitor.h
@@ -0,0 +1,28 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_FAKE_MOUSE_CURSOR_MONITOR_H_
+#define REMOTING_HOST_FAKE_MOUSE_CURSOR_MONITOR_H_
+
+#include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h"
+
+namespace remoting {
+
+class FakeMouseCursorMonitor : public webrtc::MouseCursorMonitor {
+ public:
+ FakeMouseCursorMonitor();
+ virtual ~FakeMouseCursorMonitor();
+
+ virtual void Init(Callback* callback, Mode mode) OVERRIDE;
+ virtual void Capture() OVERRIDE;
+
+ private:
+ Callback* callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeMouseCursorMonitor);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_FAKE_MOUSE_CURSOR_MONITOR_H_
« no previous file with comments | « remoting/host/fake_desktop_environment.cc ('k') | remoting/host/fake_mouse_cursor_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698