Chromium Code Reviews| 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_ |