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

Unified Diff: webkit/plugins/ppapi/ppb_video_capture_impl.cc

Issue 10108009: Move VideoCapture::VideoCaptureCapability to video_capture_types.h (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix content_unittests build failure Created 8 years, 8 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 | « webkit/plugins/ppapi/ppb_video_capture_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_video_capture_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_video_capture_impl.cc b/webkit/plugins/ppapi/ppb_video_capture_impl.cc
index c4879bd07f472107ffdcd5a8493a1ac1ace8ac69..dbadfca16f12f6c4efdd7ebf3abb31a1435e9040 100644
--- a/webkit/plugins/ppapi/ppb_video_capture_impl.cc
+++ b/webkit/plugins/ppapi/ppb_video_capture_impl.cc
@@ -290,9 +290,9 @@ void PPB_VideoCapture_Impl::SetRequestedInfo(
capability_.width = device_info.width;
capability_.height = device_info.height;
- capability_.max_fps = device_info.frames_per_second;
+ capability_.frame_rate = device_info.frames_per_second;
capability_.expected_capture_delay = 0; // Ignored.
- capability_.raw_type = media::VideoFrame::I420;
+ capability_.color = media::VideoFrame::I420;
capability_.interlaced = false; // Ignored.
}
« no previous file with comments | « webkit/plugins/ppapi/ppb_video_capture_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698