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

Unified Diff: remoting/host/host_user_interface.cc

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 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/host_port_allocator.cc ('k') | remoting/host/remoting_me2me_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_user_interface.cc
diff --git a/remoting/host/host_user_interface.cc b/remoting/host/host_user_interface.cc
index dd8d33fcafb7e4f0677cd1ae9d27600d1b1b0bb0..151a7ca542540bc2d939994a9346ccbb54e4e8c2 100644
--- a/remoting/host/host_user_interface.cc
+++ b/remoting/host/host_user_interface.cc
@@ -89,11 +89,11 @@ void HostUserInterface::OnDisconnectCallback() {
}
base::SingleThreadTaskRunner* HostUserInterface::network_task_runner() const {
- return network_task_runner_;
+ return network_task_runner_.get();
}
base::SingleThreadTaskRunner* HostUserInterface::ui_task_runner() const {
- return ui_task_runner_;
+ return ui_task_runner_.get();
}
void HostUserInterface::DisconnectSession() const {
« no previous file with comments | « remoting/host/host_port_allocator.cc ('k') | remoting/host/remoting_me2me_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698