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

Unified Diff: content/renderer/media/render_audiosourceprovider.h

Issue 11359196: Associate audio streams with their source/destination RenderView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Plus, removed CalledOnValidThread DCHECK from sampleRate() call since nothing mutates. Created 8 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
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/media/render_audiosourceprovider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/render_audiosourceprovider.h
diff --git a/content/renderer/media/render_audiosourceprovider.h b/content/renderer/media/render_audiosourceprovider.h
index b264c0e42cd329069f38f0cc300a38bd58608494..148b11ffd1dc7d17b529b7b37becfc362701db12 100644
--- a/content/renderer/media/render_audiosourceprovider.h
+++ b/content/renderer/media/render_audiosourceprovider.h
@@ -37,7 +37,7 @@ class RenderAudioSourceProvider
: public WebKit::WebAudioSourceProvider,
public media::AudioRendererSink {
public:
- RenderAudioSourceProvider();
+ explicit RenderAudioSourceProvider(int source_render_view_id);
// WebKit::WebAudioSourceProvider implementation.
@@ -79,7 +79,7 @@ class RenderAudioSourceProvider
// default_sink_ is the default sink.
scoped_refptr<media::AudioRendererSink> default_sink_;
- DISALLOW_COPY_AND_ASSIGN(RenderAudioSourceProvider);
+ DISALLOW_IMPLICIT_CONSTRUCTORS(RenderAudioSourceProvider);
};
} // namespace content
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/media/render_audiosourceprovider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698