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

Unified Diff: content/renderer/render_thread.h

Issue 7157001: Implements AudioMessageFilter as member in RenderThread (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Fixed nits in AudioRenderImpl unit test Created 9 years, 5 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
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread.h
===================================================================
--- content/renderer/render_thread.h (revision 92113)
+++ content/renderer/render_thread.h (working copy)
@@ -22,6 +22,8 @@
#include "ui/gfx/native_widget_types.h"
class AppCacheDispatcher;
+class AudioInputMessageFilter;
+class AudioMessageFilter;
class DBMessageFilter;
class FilePath;
class GpuChannelHost;
@@ -165,6 +167,14 @@
return indexed_db_dispatcher_.get();
}
+ AudioInputMessageFilter* audio_input_message_filter() {
+ return audio_input_message_filter_.get();
+ }
+
+ AudioMessageFilter* audio_message_filter() {
+ return audio_message_filter_.get();
+ }
+
VideoCaptureImplManager* video_capture_impl_manager() const {
return vc_manager_.get();
}
@@ -251,6 +261,8 @@
// Used on the renderer and IPC threads.
scoped_refptr<DBMessageFilter> db_message_filter_;
+ scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_;
+ scoped_refptr<AudioMessageFilter> audio_message_filter_;
// Used on multiple threads.
scoped_refptr<VideoCaptureImplManager> vc_manager_;
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698