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

Unified Diff: content/child/db_message_filter.h

Issue 245443005: Move IPC::MessageFilter and router to a separate file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Oops, add ipc_message_filter_router.h/cc Created 6 years, 8 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: content/child/db_message_filter.h
diff --git a/content/child/db_message_filter.h b/content/child/db_message_filter.h
index 4950006f4da851a96723c8e7077a8ca73833b45b..8e23c45a7282edf68b20a3651ec3872ecffd2900 100644
--- a/content/child/db_message_filter.h
+++ b/content/child/db_message_filter.h
@@ -5,17 +5,18 @@
#ifndef CONTENT_CHILD_DB_MESSAGE_FILTER_H_
#define CONTENT_CHILD_DB_MESSAGE_FILTER_H_
-#include "ipc/ipc_channel_proxy.h"
+#include "base/strings/string16.h"
+#include "ipc/ipc_message_filter.h"
namespace content {
// Receives database messages from the browser process and processes them on the
// IO thread.
-class DBMessageFilter : public IPC::ChannelProxy::MessageFilter {
+class DBMessageFilter : public IPC::MessageFilter {
public:
DBMessageFilter();
- // IPC::ChannelProxy::MessageFilter
+ // IPC::MessageFilter
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
protected:

Powered by Google App Engine
This is Rietveld 408576698