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

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 6 years, 1 month 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
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..09572b67acd2f8f3f3c49c15c405aaa1e7792ad8 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -40,42 +40,42 @@ scoped_ptr<ChromotingHostContext> ChromotingHostContext::Copy() {
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::audio_task_runner() {
+ChromotingHostContext::audio_task_runner() const {
return audio_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::file_task_runner() {
+ChromotingHostContext::file_task_runner() const {
return file_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::input_task_runner() {
+ChromotingHostContext::input_task_runner() const {
return input_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::network_task_runner() {
+ChromotingHostContext::network_task_runner() const {
return network_task_runner_;
}
scoped_refptr<AutoThreadTaskRunner>
-ChromotingHostContext::ui_task_runner() {
+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_;
}

Powered by Google App Engine
This is Rietveld 408576698