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

Unified Diff: ppapi/api/dev/pp_video_capture_dev.idl

Issue 8522002: Add values to all dev Pepper .idl enumerations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | ppapi/api/dev/pp_video_dev.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/pp_video_capture_dev.idl
diff --git a/ppapi/api/dev/pp_video_capture_dev.idl b/ppapi/api/dev/pp_video_capture_dev.idl
index 420579aad4b6c90f0cb90fdd18fc8a7acd1f8fb8..d11ec475e1f1b2164e2ce7a1ccb11eef1e3f4d08 100644
--- a/ppapi/api/dev/pp_video_capture_dev.idl
+++ b/ppapi/api/dev/pp_video_capture_dev.idl
@@ -27,21 +27,21 @@ enum PP_VideoCaptureStatus_Dev {
/**
* Initial state, capture is stopped.
*/
- PP_VIDEO_CAPTURE_STATUS_STOPPED,
+ PP_VIDEO_CAPTURE_STATUS_STOPPED = 0,
/**
* StartCapture has been called, but capture hasn't started yet.
*/
- PP_VIDEO_CAPTURE_STATUS_STARTING,
+ PP_VIDEO_CAPTURE_STATUS_STARTING = 1,
/**
- * Capture is started.
+ * Capture has been started.
*/
- PP_VIDEO_CAPTURE_STATUS_STARTED,
+ PP_VIDEO_CAPTURE_STATUS_STARTED = 2,
/**
* Capture has been started, but is paused because no buffer is available.
*/
- PP_VIDEO_CAPTURE_STATUS_PAUSED,
+ PP_VIDEO_CAPTURE_STATUS_PAUSED = 3,
/**
* StopCapture has been called, but capture hasn't stopped yet.
*/
- PP_VIDEO_CAPTURE_STATUS_STOPPING
+ PP_VIDEO_CAPTURE_STATUS_STOPPING = 4
};
« no previous file with comments | « no previous file | ppapi/api/dev/pp_video_dev.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698