From fd0a773a19c92b94a59b9207f4cc9b154f54a144 Mon Sep 17 00:00:00 2001 From: "xhwang@chromium.org" Date: Tue, 30 Apr 2013 20:55:03 +0000 Subject: 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 --- ipc/ipc_channel_factory.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ipc/ipc_channel_factory.h') diff --git a/ipc/ipc_channel_factory.h b/ipc/ipc_channel_factory.h index a1e1d85..370808f 100644 --- a/ipc/ipc_channel_factory.h +++ b/ipc/ipc_channel_factory.h @@ -16,7 +16,7 @@ namespace IPC { // the socket, it accept()s the connection and passes the new FD to the // delegate. The delegate is then responsible for creating a new IPC::Channel // for the FD. -class IPC_EXPORT ChannelFactory : public MessageLoopForIO::Watcher { +class IPC_EXPORT ChannelFactory : public base::MessageLoopForIO::Watcher { public: class Delegate { public: @@ -44,7 +44,8 @@ class IPC_EXPORT ChannelFactory : public MessageLoopForIO::Watcher { virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE; virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE; - MessageLoopForIO::FileDescriptorWatcher server_listen_connection_watcher_; + base::MessageLoopForIO::FileDescriptorWatcher + server_listen_connection_watcher_; base::FilePath path_; Delegate* delegate_; int listen_fd_; -- cgit v1.1