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

Unified Diff: content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc

Issue 1462003002: Changed MediaStreamRemoteVideoSource unit test to use correct WebRtcVideoFrame.InitToBlack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc
diff --git a/content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc b/content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc
index c5ab00e050f51bc370e57862d1099bb33ebb39ed..7992e806b9a209217a2236d4880cdd2b0f14ca4a 100644
--- a/content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc
+++ b/content/renderer/media/webrtc/media_stream_remote_video_source_unittest.cc
@@ -127,7 +127,7 @@ TEST_F(MediaStreamRemoteVideoSourceTest, StartTrack) {
EXPECT_CALL(sink, OnVideoFrame()).WillOnce(
RunClosure(quit_closure));
cricket::WebRtcVideoFrame webrtc_frame;
- webrtc_frame.InitToBlack(320, 240, 1, 1, 0, 1);
+ webrtc_frame.InitToBlack(320, 240, 1, 1, 1);
source()->RenderInterfaceForTest()->RenderFrame(&webrtc_frame);
run_loop.Run();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698