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

Side by Side Diff: ppapi/c/ppb_video_frame.h

Issue 126823007: [PPAPI] API thunk for video media stream track. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_track_thunk
Patch Set: Update Created 6 years, 11 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /* From ppb_video_frame.idl modified Fri Dec 27 17:21:52 2013. */ 6 /* From ppb_video_frame.idl modified Wed Jan 8 13:26:16 2014. */
7 7
8 #ifndef PPAPI_C_PPB_VIDEO_FRAME_H_ 8 #ifndef PPAPI_C_PPB_VIDEO_FRAME_H_
9 #define PPAPI_C_PPB_VIDEO_FRAME_H_ 9 #define PPAPI_C_PPB_VIDEO_FRAME_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_macros.h" 12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_resource.h" 13 #include "ppapi/c/pp_resource.h"
14 #include "ppapi/c/pp_size.h" 14 #include "ppapi/c/pp_size.h"
15 #include "ppapi/c/pp_stdint.h" 15 #include "ppapi/c/pp_stdint.h"
16 #include "ppapi/c/pp_time.h" 16 #include "ppapi/c/pp_time.h"
17 17
18 #define PPB_VIDEOFRAME_INTERFACE_0_1 "PPB_VideoFrame;0.1" /* dev */ 18 #define PPB_VIDEOFRAME_INTERFACE_0_1 "PPB_VideoFrame;0.1" /* dev */
19 /** 19 /**
20 * @file 20 * @file
21 * Defines the <code>PPB_VideoFrame</code> interface.
yzshen1 2014/01/08 19:01:45 I think this must be some issue in the generator?
Peng 2014/01/08 21:48:37 Done
22 */ 21 */
23 22
24 23
25 /** 24 /**
26 * @addtogroup Enums 25 * @addtogroup Enums
27 * @{ 26 * @{
28 */ 27 */
29 typedef enum { 28 typedef enum {
30 /** 29 /**
31 * Unknown format value. 30 * Unknown format value.
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 * @return The size of the data buffer. 129 * @return The size of the data buffer.
131 */ 130 */
132 uint32_t (*GetDataBufferSize)(PP_Resource frame); 131 uint32_t (*GetDataBufferSize)(PP_Resource frame);
133 }; 132 };
134 /** 133 /**
135 * @} 134 * @}
136 */ 135 */
137 136
138 #endif /* PPAPI_C_PPB_VIDEO_FRAME_H_ */ 137 #endif /* PPAPI_C_PPB_VIDEO_FRAME_H_ */
139 138
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698