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

Unified Diff: ppapi/c/ppb_video_decoder.h

Issue 1369203003: Promote PPB_VideoDecoder 1.1 to Stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Corrected interface order in interfaces_ppb_public_stable.h Created 5 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
« no previous file with comments | « ppapi/api/ppb_video_decoder.idl ('k') | ppapi/thunk/interfaces_ppb_public_dev_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppb_video_decoder.h
diff --git a/ppapi/c/ppb_video_decoder.h b/ppapi/c/ppb_video_decoder.h
index f2c4f18e399e10531f1be870d856fcee4c36d000..7dc46318331128ce2959df94c9207f5d18defd32 100644
--- a/ppapi/c/ppb_video_decoder.h
+++ b/ppapi/c/ppb_video_decoder.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_video_decoder.idl modified Thu Aug 6 14:15:48 2015. */
+/* From ppb_video_decoder.idl modified Mon Sep 28 15:23:30 2015. */
#ifndef PPAPI_C_PPB_VIDEO_DECODER_H_
#define PPAPI_C_PPB_VIDEO_DECODER_H_
@@ -22,8 +22,8 @@
#define PPB_VIDEODECODER_INTERFACE_0_1 "PPB_VideoDecoder;0.1"
#define PPB_VIDEODECODER_INTERFACE_0_2 "PPB_VideoDecoder;0.2"
#define PPB_VIDEODECODER_INTERFACE_1_0 "PPB_VideoDecoder;1.0"
-#define PPB_VIDEODECODER_INTERFACE_1_1 "PPB_VideoDecoder;1.1" /* dev */
-#define PPB_VIDEODECODER_INTERFACE PPB_VIDEODECODER_INTERFACE_1_0
+#define PPB_VIDEODECODER_INTERFACE_1_1 "PPB_VideoDecoder;1.1"
+#define PPB_VIDEODECODER_INTERFACE PPB_VIDEODECODER_INTERFACE_1_1
/**
* @file
@@ -58,7 +58,7 @@
* Chrome and ChromeOS: aac, h264.
* ChromeOS: mpeg4.
*/
-struct PPB_VideoDecoder_1_1 { /* dev */
+struct PPB_VideoDecoder_1_1 {
/**
* Creates a new video decoder resource.
*
@@ -230,6 +230,8 @@ struct PPB_VideoDecoder_1_1 { /* dev */
struct PP_CompletionCallback callback);
};
+typedef struct PPB_VideoDecoder_1_1 PPB_VideoDecoder;
+
struct PPB_VideoDecoder_0_1 {
PP_Resource (*Create)(PP_Instance instance);
PP_Bool (*IsVideoDecoder)(PP_Resource resource);
@@ -301,8 +303,6 @@ struct PPB_VideoDecoder_1_0 {
int32_t (*Reset)(PP_Resource video_decoder,
struct PP_CompletionCallback callback);
};
-
-typedef struct PPB_VideoDecoder_1_0 PPB_VideoDecoder;
/**
* @}
*/
« no previous file with comments | « ppapi/api/ppb_video_decoder.idl ('k') | ppapi/thunk/interfaces_ppb_public_dev_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698