summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_message_filter.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:29:48 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:29:48 +0000
commit320eff44dc909bf0fe575b3bff1df08a2fd99736 (patch)
treed17929f1c501ec3bd661c2cae401fdae1ac44d58 /ipc/ipc_sync_message_filter.h
parent97739e9e12cb10a63c75e7f6e65db28cc8101037 (diff)
downloadchromium_src-320eff44dc909bf0fe575b3bff1df08a2fd99736.zip
chromium_src-320eff44dc909bf0fe575b3bff1df08a2fd99736.tar.gz
chromium_src-320eff44dc909bf0fe575b3bff1df08a2fd99736.tar.bz2
Cleanup: Remove unneeded forward declarations in base, dbug, gpu, ipc, jingle, and media.
BUG=none TEST=none Review URL: http://codereview.chromium.org/8511045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_sync_message_filter.h')
-rw-r--r--ipc/ipc_sync_message_filter.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ipc/ipc_sync_message_filter.h b/ipc/ipc_sync_message_filter.h
index cdaef85..4b5b55f 100644
--- a/ipc/ipc_sync_message_filter.h
+++ b/ipc/ipc_sync_message_filter.h
@@ -6,12 +6,13 @@
#define IPC_IPC_SYNC_MESSAGE_FILTER_H_
#pragma once
+#include <set>
+
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/synchronization/lock.h"
#include "ipc/ipc_channel_proxy.h"
#include "ipc/ipc_sync_message.h"
-#include <set>
namespace base {
class MessageLoopProxy;
@@ -20,8 +21,6 @@ class WaitableEvent;
namespace IPC {
-class MessageReplyDeserializer;
-
// This MessageFilter allows sending synchronous IPC messages from a thread
// other than the listener thread associated with the SyncChannel. It does not
// support fancy features that SyncChannel does, such as handling recursion or