summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_channel_win.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index 6fb4416..10af1fe 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -420,7 +420,8 @@ void Channel::ChannelImpl::OnIOCompleted(MessageLoopForIO::IOContext* context,
// We don't support recursion through OnMessageReceived yet!
DCHECK(!processing_incoming_);
- AutoReset<bool> auto_reset_processing_incoming(&processing_incoming_, true);
+ base::AutoReset<bool> auto_reset_processing_incoming(
+ &processing_incoming_, true);
// Process the new data.
if (input_state_.is_pending) {