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

Unified Diff: content/browser/renderer_host/p2p/socket_dispatcher_host.h

Issue 8912009: Move BrowserMessageFilter to public, and into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 9 years 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/browser/renderer_host/p2p/socket_dispatcher_host.h
diff --git a/content/browser/renderer_host/p2p/socket_dispatcher_host.h b/content/browser/renderer_host/p2p/socket_dispatcher_host.h
index ea89f78bbd98b1f0f71dc329bf7f445cc0b226d8..25a3d501994fdb91c2f4f9101ec32c3e60181f61 100644
--- a/content/browser/renderer_host/p2p/socket_dispatcher_host.h
+++ b/content/browser/renderer_host/p2p/socket_dispatcher_host.h
@@ -7,8 +7,8 @@
#include <map>
-#include "content/browser/browser_message_filter.h"
#include "content/common/p2p_sockets.h"
+#include "content/public/browser/browser_message_filter.h"
#include "net/base/ip_endpoint.h"
#include "net/base/network_change_notifier.h"
@@ -18,13 +18,13 @@ class P2PSocketHost;
class ResourceContext;
class P2PSocketDispatcherHost
- : public BrowserMessageFilter,
+ : public content::BrowserMessageFilter,
public net::NetworkChangeNotifier::IPAddressObserver {
public:
P2PSocketDispatcherHost(const content::ResourceContext* resource_context);
virtual ~P2PSocketDispatcherHost();
- // BrowserMessageFilter overrides.
+ // content::BrowserMessageFilter overrides.
virtual void OnChannelClosing() OVERRIDE;
virtual void OnDestruct() const OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message,

Powered by Google App Engine
This is Rietveld 408576698