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

Unified Diff: ppapi/c/dev/pp_video_capture_dev.h

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 | « ppapi/api/dev/ppb_file_chooser_dev.idl ('k') | ppapi/c/dev/pp_video_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/pp_video_capture_dev.h
diff --git a/ppapi/c/dev/pp_video_capture_dev.h b/ppapi/c/dev/pp_video_capture_dev.h
index fe73f9e497b8e8fd8f125e878d424b3ce51d1f67..c7b4c409f37e08fce0d58f27aa7282a58eda4b98 100644
--- a/ppapi/c/dev/pp_video_capture_dev.h
+++ b/ppapi/c/dev/pp_video_capture_dev.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From dev/pp_video_capture_dev.idl modified Wed Oct 5 15:55:11 2011. */
+/* From dev/pp_video_capture_dev.idl modified Fri Nov 11 20:19:26 2011. */
#ifndef PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
#define PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
@@ -47,23 +47,23 @@ typedef enum {
/**
* 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
} PP_VideoCaptureStatus_Dev;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoCaptureStatus_Dev, 4);
/**
« no previous file with comments | « ppapi/api/dev/ppb_file_chooser_dev.idl ('k') | ppapi/c/dev/pp_video_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698