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

Unified Diff: remoting/host/it2me_desktop_environment.cc

Issue 2456563002: Remove supports_touch_events flag from BasicDesktopEnvironment (Closed)
Patch Set: remove test Created 4 years, 2 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/it2me_desktop_environment.h ('k') | remoting/host/me2me_desktop_environment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/it2me_desktop_environment.cc
diff --git a/remoting/host/it2me_desktop_environment.cc b/remoting/host/it2me_desktop_environment.cc
index 7ffc79deda0887358cd0d6d06cddd4c508f77630..fd0b9b90182ff48b434447974980826723c80157 100644
--- a/remoting/host/it2me_desktop_environment.cc
+++ b/remoting/host/it2me_desktop_environment.cc
@@ -32,13 +32,11 @@ It2MeDesktopEnvironment::It2MeDesktopEnvironment(
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
base::WeakPtr<ClientSessionControl> client_session_control,
- bool supports_touch_events,
bool enable_user_interface)
: BasicDesktopEnvironment(caller_task_runner,
video_capture_task_runner,
input_task_runner,
- ui_task_runner,
- supports_touch_events) {
+ ui_task_runner) {
DCHECK(caller_task_runner->BelongsToCurrentThread());
// Create the local input monitor.
@@ -91,8 +89,7 @@ std::unique_ptr<DesktopEnvironment> It2MeDesktopEnvironmentFactory::Create(
return base::WrapUnique(new It2MeDesktopEnvironment(
caller_task_runner(), video_capture_task_runner(), input_task_runner(),
- ui_task_runner(), client_session_control, supports_touch_events(),
- enable_user_interface_));
+ ui_task_runner(), client_session_control, enable_user_interface_));
}
} // namespace remoting
« no previous file with comments | « remoting/host/it2me_desktop_environment.h ('k') | remoting/host/me2me_desktop_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698