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

Unified Diff: content/renderer/media/webrtc_audio_renderer_unittest.cc

Issue 328493003: Pass the elapsed time from VoE to WebRtcAudioRenderer as the current time for the audio/video eleme… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 6 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/media/webrtc_audio_renderer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webrtc_audio_renderer_unittest.cc
===================================================================
--- content/renderer/media/webrtc_audio_renderer_unittest.cc (revision 275847)
+++ content/renderer/media/webrtc_audio_renderer_unittest.cc (working copy)
@@ -68,9 +68,10 @@
public:
MockAudioRendererSource() {}
virtual ~MockAudioRendererSource() {}
- MOCK_METHOD3(RenderData, void(media::AudioBus* audio_bus,
+ MOCK_METHOD4(RenderData, void(media::AudioBus* audio_bus,
int sample_rate,
- int audio_delay_milliseconds));
+ int audio_delay_milliseconds,
+ base::TimeDelta* current_time));
MOCK_METHOD1(RemoveAudioRenderer, void(WebRtcAudioRenderer* renderer));
};
« no previous file with comments | « content/renderer/media/webrtc_audio_renderer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698