summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorgspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-01 19:28:34 +0000
committergspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-01 19:28:34 +0000
commit0fbd7033b5818725b4e956b93193f20f94fd698f (patch)
treeb8f8b1bfda547db52d90b7afaa79eab3989a2ddd /ipc
parent68228cdf78bbc4abf2dbef712693ec8ee59d1f64 (diff)
downloadchromium_src-0fbd7033b5818725b4e956b93193f20f94fd698f.zip
chromium_src-0fbd7033b5818725b4e956b93193f20f94fd698f.tar.gz
chromium_src-0fbd7033b5818725b4e956b93193f20f94fd698f.tar.bz2
Fixing AutoReset to be a template.
I've run into a couple of times this week when I needed one of these, for two different types besides bool. Time to fix the TODO. TEST=trybots FTW, and built locally. BUG=none Review URL: http://codereview.chromium.org/2394001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48644 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_channel_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index 701bce8..ba1df9f 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -392,7 +392,7 @@ void Channel::ChannelImpl::OnIOCompleted(MessageLoopForIO::IOContext* context,
}
// we don't support recursion through OnMessageReceived yet!
DCHECK(!processing_incoming_);
- AutoReset auto_reset_processing_incoming(&processing_incoming_, true);
+ AutoReset<bool> auto_reset_processing_incoming(&processing_incoming_, true);
ok = ProcessIncomingMessages(context, bytes_transfered);
} else {
DCHECK(context == &output_state_.context);