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

Unified Diff: remoting/host/linux/audio_pipe_reader.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
« no previous file with comments | « remoting/host/linux/audio_pipe_reader.h ('k') | remoting/host/local_input_monitor_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/linux/audio_pipe_reader.cc
diff --git a/remoting/host/linux/audio_pipe_reader.cc b/remoting/host/linux/audio_pipe_reader.cc
index c371c2120b12b23996857a2d1e7156741a2ec3d2..0d4f2ec44c3b1c1de7be92285a00e78606eccba2 100644
--- a/remoting/host/linux/audio_pipe_reader.cc
+++ b/remoting/host/linux/audio_pipe_reader.cc
@@ -170,9 +170,12 @@ void AudioPipeReader::DoCapture() {
void AudioPipeReader::WaitForPipeReadable() {
timer_.Stop();
- MessageLoopForIO::current()->WatchFileDescriptor(
- pipe_fd_, false, MessageLoopForIO::WATCH_READ,
- &file_descriptor_watcher_, this);
+ base::MessageLoopForIO::current()->WatchFileDescriptor(
+ pipe_fd_,
+ false,
+ base::MessageLoopForIO::WATCH_READ,
+ &file_descriptor_watcher_,
+ this);
}
// static
« no previous file with comments | « remoting/host/linux/audio_pipe_reader.h ('k') | remoting/host/local_input_monitor_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698