Index: media/video/capture/video_capture_types.h |
diff --git a/media/video/capture/video_capture_types.h b/media/video/capture/video_capture_types.h |
index 1a170aaf5e7d623b102f96020d5805d04aab1680..708898b5c58af67a211eaca2634db34b20d55d0c 100644 |
--- a/media/video/capture/video_capture_types.h |
+++ b/media/video/capture/video_capture_types.h |
@@ -51,15 +51,19 @@ class MEDIA_EXPORT VideoCaptureFormat { |
VideoCaptureResolutionType frame_size_type; |
}; |
-// Parameters for starting video capture and device information. |
-class MEDIA_EXPORT VideoCaptureParams : public VideoCaptureFormat { |
+// Parameters for starting video capture. |
+class MEDIA_EXPORT VideoCaptureParams { |
public: |
VideoCaptureParams(); |
+ // Identifies which device is to be started. |
VideoCaptureSessionId session_id; |
+ |
+ // Requests a resolution and format at which the capture will occur. |
+ VideoCaptureFormat requested_format; |
}; |
-// Capabilities describe the format a camera capture video in. |
+// Capabilities describe the format a camera captures video in. |
class MEDIA_EXPORT VideoCaptureCapability : public VideoCaptureFormat { |
public: |
VideoCaptureCapability(); |