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

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

Issue 11166002: Plumb render view ID from audio-related code in renderer through IPCs to AudioRendererHost in brows… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 8 years, 2 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/renderer/media/webrtc_audio_device_impl.h
diff --git a/content/renderer/media/webrtc_audio_device_impl.h b/content/renderer/media/webrtc_audio_device_impl.h
index a63acd7548f52c399038d7f59298bfd23f2f6a87..54539bb7d311b2f49910e47ea417862005c50be0 100644
--- a/content/renderer/media/webrtc_audio_device_impl.h
+++ b/content/renderer/media/webrtc_audio_device_impl.h
@@ -208,7 +208,7 @@ class CONTENT_EXPORT WebRtcAudioDeviceImpl
NON_EXPORTED_BASE(public media::AudioInputDevice::CaptureEventHandler) {
public:
// Methods called on main render thread.
- WebRtcAudioDeviceImpl();
+ explicit WebRtcAudioDeviceImpl(int render_view_id);
// webrtc::RefCountedModule implementation.
// The creator must call AddRef() after construction and use Release()
@@ -445,7 +445,7 @@ class CONTENT_EXPORT WebRtcAudioDeviceImpl
base::Time start_capture_time_;
base::Time start_render_time_;
- DISALLOW_COPY_AND_ASSIGN(WebRtcAudioDeviceImpl);
+ DISALLOW_IMPLICIT_CONSTRUCTORS(WebRtcAudioDeviceImpl);
jamesr 2012/10/29 22:51:02 why are you changing these? The style guide seems
};
#endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698