Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3170)

Unified Diff: chrome/common/ipc_channel_win.h

Issue 19617: Add thread checks to the IPC channel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/ipc_channel_win.h
===================================================================
--- chrome/common/ipc_channel_win.h (revision 8590)
+++ chrome/common/ipc_channel_win.h (working copy)
@@ -12,6 +12,8 @@
#include "base/message_loop.h"
+class NonThreadSafe;
+
namespace IPC {
class Channel::ChannelImpl : public MessageLoopForIO::IOHandler {
@@ -73,6 +75,8 @@
ScopedRunnableMethodFactory<ChannelImpl> factory_;
+ scoped_ptr<NonThreadSafe> thread_check_;
jam 2009/01/28 03:33:58 surround by ifdef since only used in debug
+
DISALLOW_COPY_AND_ASSIGN(ChannelImpl);
};

Powered by Google App Engine
This is Rietveld 408576698