| Index: remoting/host/basic_desktop_environment.cc
|
| diff --git a/remoting/host/basic_desktop_environment.cc b/remoting/host/basic_desktop_environment.cc
|
| index 174248a2900ffcac7c1a4e57cf7fa88772b06a19..a5398bb3fb54378b0546f0a614eeddd889196d99 100644
|
| --- a/remoting/host/basic_desktop_environment.cc
|
| +++ b/remoting/host/basic_desktop_environment.cc
|
| @@ -11,9 +11,6 @@
|
| #if defined(OS_CHROMEOS)
|
| #include "remoting/host/chromeos/aura_desktop_capturer.h"
|
| #endif
|
| -#if defined(OS_CHROMEOS) && defined(USE_OZONE)
|
| -#include "remoting/host/chromeos/mouse_cursor_monitor_aura.h"
|
| -#endif
|
| #include "remoting/host/client_session_control.h"
|
| #include "remoting/host/gnubby_auth_handler.h"
|
| #include "remoting/host/input_injector.h"
|
| @@ -48,13 +45,8 @@ scoped_ptr<ScreenControls> BasicDesktopEnvironment::CreateScreenControls() {
|
|
|
| scoped_ptr<webrtc::MouseCursorMonitor>
|
| BasicDesktopEnvironment::CreateMouseCursorMonitor() {
|
| -#if defined(OS_CHROMEOS) && defined(USE_OZONE)
|
| - return make_scoped_ptr(
|
| - new MouseCursorMonitorAura(*desktop_capture_options_));
|
| -#else
|
| return make_scoped_ptr(webrtc::MouseCursorMonitor::CreateForScreen(
|
| *desktop_capture_options_, webrtc::kFullDesktopScreenId));
|
| -#endif
|
| }
|
|
|
| std::string BasicDesktopEnvironment::GetCapabilities() const {
|
|
|