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

Unified Diff: content/browser/renderer_host/media/video_capture_host_unittest.cc

Issue 22876027: Consolidate duplicated frame / capability structures in video_capture_types.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased: changed media::VideoCaptureCapability::kI420 -> media::PIXEL_FORMAT_I420 etc. Created 7 years, 3 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/browser/renderer_host/media/video_capture_host_unittest.cc
diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc
index 499423e646f75b13af12c156344387e59ae14b84..b36476e4e0f7e2f17e8aca44c653615123674f70 100644
--- a/content/browser/renderer_host/media/video_capture_host_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc
@@ -252,7 +252,7 @@ class VideoCaptureHostTest : public testing::Test {
media::VideoCaptureParams params;
params.width = 352;
params.height = 288;
- params.frame_per_second = 30;
+ params.frame_rate = 30;
params.session_id = kTestFakeDeviceId;
host_->OnStartCapture(kDeviceId, params);
run_loop.Run();

Powered by Google App Engine
This is Rietveld 408576698