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

Unified Diff: remoting/host/win/wts_session_process_delegate.cc

Issue 14314026: remoting: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
Index: remoting/host/win/wts_session_process_delegate.cc
diff --git a/remoting/host/win/wts_session_process_delegate.cc b/remoting/host/win/wts_session_process_delegate.cc
index 434e5df1e3bfba3208a608d6fe8c1c527ed6c4a1..0e621da01177627b19ff304a66cc1acc7eb320da 100644
--- a/remoting/host/win/wts_session_process_delegate.cc
+++ b/remoting/host/win/wts_session_process_delegate.cc
@@ -436,7 +436,7 @@ void WtsSessionProcessDelegate::Core::InitializeJob() {
}
// Register to receive job notifications via the I/O thread's completion port.
- if (!MessageLoopForIO::current()->RegisterJobObject(job, this)) {
+ if (!base::MessageLoopForIO::current()->RegisterJobObject(job, this)) {
LOG_GETLASTERROR(ERROR)
<< "Failed to associate the job object with a completion port";
return;
« no previous file with comments | « remoting/host/win/worker_process_launcher_unittest.cc ('k') | remoting/jingle_glue/chromium_socket_factory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698