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

Unified Diff: trunk/src/remoting/host/basic_desktop_environment.h

Issue 151163002: Revert 248045 "Use webrtc::MouseCursorMonitor for cursor shapes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 | « no previous file | trunk/src/remoting/host/basic_desktop_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/remoting/host/basic_desktop_environment.h
===================================================================
--- trunk/src/remoting/host/basic_desktop_environment.h (revision 248137)
+++ trunk/src/remoting/host/basic_desktop_environment.h (working copy)
@@ -13,12 +13,6 @@
#include "base/memory/scoped_ptr.h"
#include "remoting/host/desktop_environment.h"
-namespace webrtc {
-
-class DesktopCaptureOptions;
-
-} // namespace webrtc
-
namespace remoting {
// Used to create audio/video capturers and event executor that work with
@@ -32,8 +26,6 @@
virtual scoped_ptr<InputInjector> CreateInputInjector() OVERRIDE;
virtual scoped_ptr<ScreenControls> CreateScreenControls() OVERRIDE;
virtual scoped_ptr<webrtc::ScreenCapturer> CreateVideoCapturer() OVERRIDE;
- virtual scoped_ptr<webrtc::MouseCursorMonitor> CreateMouseCursorMonitor()
- OVERRIDE;
virtual std::string GetCapabilities() const OVERRIDE;
virtual void SetCapabilities(const std::string& capabilities) OVERRIDE;
@@ -57,10 +49,6 @@
return ui_task_runner_;
}
- webrtc::DesktopCaptureOptions* desktop_capture_options() {
- return desktop_capture_options_.get();
- }
-
private:
// Task runner on which methods of DesktopEnvironment interface should be
// called.
@@ -72,13 +60,6 @@
// Used to run UI code.
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
- // Options shared between |ScreenCapturer| and |MouseCursorMonitor|. It
- // might contain expensive resources, thus justifying the sharing.
- // Also: it's dynamically allocated to avoid having to bring in
- // desktop_capture_options.h which brings in X11 headers which causes hard to
- // find build errors.
- scoped_ptr<webrtc::DesktopCaptureOptions> desktop_capture_options_;
-
DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironment);
};
« no previous file with comments | « no previous file | trunk/src/remoting/host/basic_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698