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

Unified Diff: content/browser/renderer_host/media/media_stream_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/media/media_stream_dispatcher_host.h
diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.h b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
index b57ea588de9a925a9774f5dafee32ec088c32dda..4f340f0081c379e21a60ef126fea0ad414e73935 100644
--- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
+++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
@@ -9,11 +9,11 @@
#include <string>
#include <utility>
-#include "content/browser/browser_message_filter.h"
#include "content/browser/renderer_host/media/media_stream_manager.h"
#include "content/browser/renderer_host/media/media_stream_requester.h"
#include "content/common/content_export.h"
#include "content/common/media/media_stream_options.h"
+#include "content/public/browser/browser_message_filter.h"
namespace content {
class ResourceContext;
@@ -25,7 +25,7 @@ namespace media_stream {
// MediaStreamImpl. It's the complement of MediaStreamDispatcher
// (owned by RenderView).
class CONTENT_EXPORT MediaStreamDispatcherHost
- : public BrowserMessageFilter,
+ : public content::BrowserMessageFilter,
public MediaStreamRequester {
public:
MediaStreamDispatcherHost(const content::ResourceContext* resource_context,
@@ -42,7 +42,7 @@ class CONTENT_EXPORT MediaStreamDispatcherHost
virtual void AudioDeviceFailed(const std::string& label, int index) OVERRIDE;
virtual void VideoDeviceFailed(const std::string& label, int index) OVERRIDE;
- // BrowserMessageFilter implementation.
+ // content::BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
virtual void OnChannelClosing() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698