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

Unified Diff: remoting/host/me2me_desktop_environment.h

Issue 1673723002: Use IpcVideoFrameCapturer on network thread instead of capturer thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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.cc ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/me2me_desktop_environment.h
diff --git a/remoting/host/me2me_desktop_environment.h b/remoting/host/me2me_desktop_environment.h
index 7faf9a5f1938c89ef1bec06d0a9bd0918dbcf2e2..6d9969f85baf6a1f171740362322593ce2c4cfbe 100644
--- a/remoting/host/me2me_desktop_environment.h
+++ b/remoting/host/me2me_desktop_environment.h
@@ -30,6 +30,7 @@ class Me2MeDesktopEnvironment : public BasicDesktopEnvironment {
friend class Me2MeDesktopEnvironmentFactory;
Me2MeDesktopEnvironment(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> video_capture_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
bool supports_touch_events);
@@ -54,7 +55,7 @@ class Me2MeDesktopEnvironment : public BasicDesktopEnvironment {
scoped_ptr<LocalInputMonitor> local_input_monitor_;
// True if gnubby auth is enabled.
- bool gnubby_auth_enabled_;
+ bool gnubby_auth_enabled_ = false;
DISALLOW_COPY_AND_ASSIGN(Me2MeDesktopEnvironment);
};
@@ -64,6 +65,7 @@ class Me2MeDesktopEnvironmentFactory : public BasicDesktopEnvironmentFactory {
public:
Me2MeDesktopEnvironmentFactory(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> video_capture_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
~Me2MeDesktopEnvironmentFactory() override;
@@ -79,10 +81,10 @@ class Me2MeDesktopEnvironmentFactory : public BasicDesktopEnvironmentFactory {
private:
// True if curtain mode is enabled.
- bool curtain_enabled_;
+ bool curtain_enabled_ = false;
// True if gnubby auth is enabled.
- bool gnubby_auth_enabled_;
+ bool gnubby_auth_enabled_ = false;
DISALLOW_COPY_AND_ASSIGN(Me2MeDesktopEnvironmentFactory);
};
« no previous file with comments | « remoting/host/it2me_desktop_environment.cc ('k') | remoting/host/me2me_desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698