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

Unified Diff: remoting/host/chromoting_host_context.cc

Issue 719983002: Reporting of policy errors via host-offline-reason: part 3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hor-nohoststatussender
Patch Set: Rebasing... Created 5 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 | « remoting/host/chromoting_host_context.h ('k') | remoting/host/dns_blackhole_checker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host_context.cc
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc
index aa73a8cf06411e9ee703c3f3eb7c93a1b7b71b2d..60e3a732c68b8e58b7c8a69a50e84171456db7b0 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -39,43 +39,43 @@ scoped_ptr<ChromotingHostContext> ChromotingHostContext::Copy() {
video_encode_task_runner_, url_request_context_getter_));
}
-scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::audio_task_runner() {
+scoped_refptr<AutoThreadTaskRunner> ChromotingHostContext::audio_task_runner()
+ const {
return audio_task_runner_;
}
-scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::file_task_runner() {
+scoped_refptr<AutoThreadTaskRunner> ChromotingHostContext::file_task_runner()
+ const {
return file_task_runner_;
}
-scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::input_task_runner() {
+scoped_refptr<AutoThreadTaskRunner> ChromotingHostContext::input_task_runner()
+ const {
return input_task_runner_;
}
-scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::network_task_runner() {
+scoped_refptr<AutoThreadTaskRunner> ChromotingHostContext::network_task_runner()
+ const {
return network_task_runner_;
}
-scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::ui_task_runner() {
+scoped_refptr<AutoThreadTaskRunner> ChromotingHostContext::ui_task_runner()
+ const {
return ui_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::video_capture_task_runner() {
+ChromotingHostContext::video_capture_task_runner() const {
return video_capture_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::video_encode_task_runner() {
+ChromotingHostContext::video_encode_task_runner() const {
return video_encode_task_runner_;
}
scoped_refptr<net::URLRequestContextGetter>
-ChromotingHostContext::url_request_context_getter() {
+ChromotingHostContext::url_request_context_getter() const {
return url_request_context_getter_;
}
« no previous file with comments | « remoting/host/chromoting_host_context.h ('k') | remoting/host/dns_blackhole_checker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698