summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_channel_win.h')
-rw-r--r--ipc/ipc_channel_win.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h
index bffae54..4b93bb6 100644
--- a/ipc/ipc_channel_win.h
+++ b/ipc/ipc_channel_win.h
@@ -22,7 +22,7 @@ class ThreadChecker;
namespace IPC {
class Channel::ChannelImpl : public internal::ChannelReader,
- public MessageLoopForIO::IOHandler {
+ public base::MessageLoopForIO::IOHandler {
public:
// Mirror methods of Channel, see ipc_channel.h for description.
ChannelImpl(const IPC::ChannelHandle &channel_handle, Mode mode,
@@ -48,17 +48,19 @@ class Channel::ChannelImpl : public internal::ChannelReader,
bool CreatePipe(const IPC::ChannelHandle &channel_handle, Mode mode);
bool ProcessConnection();
- bool ProcessOutgoingMessages(MessageLoopForIO::IOContext* context,
+ bool ProcessOutgoingMessages(base::MessageLoopForIO::IOContext* context,
DWORD bytes_written);
// MessageLoop::IOHandler implementation.
- virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
- DWORD bytes_transfered, DWORD error);
+ virtual void OnIOCompleted(base::MessageLoopForIO::IOContext* context,
+ DWORD bytes_transfered,
+ DWORD error);
+
private:
struct State {
explicit State(ChannelImpl* channel);
~State();
- MessageLoopForIO::IOContext context;
+ base::MessageLoopForIO::IOContext context;
bool is_pending;
};