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

Unified Diff: ppapi/c/private/pp_video_frame_private.h

Issue 14192054: Rename PPAPI Video Stream APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Straighten out naming confusion, improve comments. Created 7 years, 8 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/c/ppb_video_writer.h ('k') | ppapi/c/private/ppb_video_destination_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/pp_video_frame_private.h
diff --git a/ppapi/c/pp_video_frame.h b/ppapi/c/private/pp_video_frame_private.h
similarity index 66%
rename from ppapi/c/pp_video_frame.h
rename to ppapi/c/private/pp_video_frame_private.h
index ad5f8935e358cbf81774e3fbaed535984fa53261..8c64476b3fd1843eff9442bab5710a5f9c450f0a 100644
--- a/ppapi/c/pp_video_frame.h
+++ b/ppapi/c/private/pp_video_frame_private.h
@@ -3,10 +3,10 @@
* found in the LICENSE file.
*/
-/* From pp_video_frame.idl modified Tue Apr 2 10:07:49 2013. */
+/* From private/pp_video_frame_private.idl modified Wed Apr 24 11:49:01 2013. */
-#ifndef PPAPI_C_PP_VIDEO_FRAME_H_
-#define PPAPI_C_PP_VIDEO_FRAME_H_
+#ifndef PPAPI_C_PRIVATE_PP_VIDEO_FRAME_PRIVATE_H_
+#define PPAPI_C_PRIVATE_PP_VIDEO_FRAME_PRIVATE_H_
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_resource.h"
@@ -24,9 +24,11 @@
* @{
*/
/**
- * The <code>PP_Video_Frame</code> struct represents a video frame.
+ * The <code>PP_VideoFrame_Private</code> struct represents a video frame.
+ * Video sources and destinations use frames to transfer video to and from
+ * the browser.
*/
-struct PP_VideoFrame {
+struct PP_VideoFrame_Private {
/**
* A timestamp placing the frame in a video stream.
*/
@@ -44,10 +46,10 @@ struct PP_VideoFrame {
*/
int32_t padding;
};
-PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoFrame, 16);
+PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoFrame_Private, 16);
/**
* @}
*/
-#endif /* PPAPI_C_PP_VIDEO_FRAME_H_ */
+#endif /* PPAPI_C_PRIVATE_PP_VIDEO_FRAME_PRIVATE_H_ */
« no previous file with comments | « ppapi/c/ppb_video_writer.h ('k') | ppapi/c/private/ppb_video_destination_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698