diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-30 20:55:03 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-30 20:55:03 +0000 |
commit | fd0a773a19c92b94a59b9207f4cc9b154f54a144 (patch) | |
tree | d10fc47c74d613100cbd4408137194a55573dd6d /ipc/ipc_channel_posix.h | |
parent | fb4d0a34d327edf6f7abc03eec53e87243396cf0 (diff) | |
download | chromium_src-fd0a773a19c92b94a59b9207f4cc9b154f54a144.zip chromium_src-fd0a773a19c92b94a59b9207f4cc9b154f54a144.tar.gz chromium_src-fd0a773a19c92b94a59b9207f4cc9b154f54a144.tar.bz2 |
ipc: Use base::MessageLoop.
BUG=236029
R=agl@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14383024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197465 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.h')
-rw-r--r-- | ipc/ipc_channel_posix.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h index 6378c33..aaefe15 100644 --- a/ipc/ipc_channel_posix.h +++ b/ipc/ipc_channel_posix.h @@ -49,7 +49,7 @@ namespace IPC { class Channel::ChannelImpl : public internal::ChannelReader, - public MessageLoopForIO::Watcher { + public base::MessageLoopForIO::Watcher { public: // Mirror methods of Channel, see ipc_channel.h for description. ChannelImpl(const IPC::ChannelHandle& channel_handle, Mode mode, @@ -118,9 +118,10 @@ class Channel::ChannelImpl : public internal::ChannelReader, // After accepting one client connection on our server socket we want to // stop listening. - MessageLoopForIO::FileDescriptorWatcher server_listen_connection_watcher_; - MessageLoopForIO::FileDescriptorWatcher read_watcher_; - MessageLoopForIO::FileDescriptorWatcher write_watcher_; + base::MessageLoopForIO::FileDescriptorWatcher + server_listen_connection_watcher_; + base::MessageLoopForIO::FileDescriptorWatcher read_watcher_; + base::MessageLoopForIO::FileDescriptorWatcher write_watcher_; // Indicates whether we're currently blocked waiting for a write to complete. bool is_blocked_on_write_; |