summaryrefslogtreecommitdiffstats
path: root/ppapi/c
diff options
context:
space:
mode:
authorneb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-14 05:52:23 +0000
committerneb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-14 05:52:23 +0000
commitb78806093a57c48917e709ea46b7ce1b2ab0f693 (patch)
tree6d4965f88bf2a791a1671177fe7bc23396287046 /ppapi/c
parent502b937c355c991645a3b88bf59d678862b7b8ff (diff)
downloadchromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.zip
chromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.tar.gz
chromium_src-b78806093a57c48917e709ea46b7ce1b2ab0f693.tar.bz2
Revert of revert 69309 - switch handles to 32 bit in PPAPI.
David Sehr helped me get the NaCl side working so I'll try to land this again. Previous CL at http://codereview.chromium.org/5837001 BUG=69474 TEST=compiles Review URL: http://codereview.chromium.org/6231003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r--ppapi/c/dev/pp_video_dev.h10
-rw-r--r--ppapi/c/dev/ppb_audio_dev.h2
-rw-r--r--ppapi/c/dev/ppb_audio_trusted_dev.h2
-rw-r--r--ppapi/c/dev/ppb_buffer_dev.h2
-rw-r--r--ppapi/c/dev/ppb_char_set_dev.h2
-rw-r--r--ppapi/c/dev/ppb_cursor_control_dev.h2
-rw-r--r--ppapi/c/dev/ppb_directory_reader_dev.h11
-rw-r--r--ppapi/c/dev/ppb_file_chooser_dev.h2
-rw-r--r--ppapi/c/dev/ppb_file_io_dev.h2
-rw-r--r--ppapi/c/dev/ppb_file_io_trusted_dev.h2
-rw-r--r--ppapi/c/dev/ppb_file_ref_dev.h2
-rw-r--r--ppapi/c/dev/ppb_file_system_dev.h2
-rw-r--r--ppapi/c/dev/ppb_find_dev.h2
-rw-r--r--ppapi/c/dev/ppb_font_dev.h2
-rw-r--r--ppapi/c/dev/ppb_fullscreen_dev.h2
-rw-r--r--ppapi/c/dev/ppb_graphics_3d_dev.h2
-rw-r--r--ppapi/c/dev/ppb_scrollbar_dev.h2
-rw-r--r--ppapi/c/dev/ppb_testing_dev.h2
-rw-r--r--ppapi/c/dev/ppb_transport_dev.h2
-rw-r--r--ppapi/c/dev/ppb_url_util_dev.h2
-rw-r--r--ppapi/c/dev/ppb_video_decoder_dev.h2
-rw-r--r--ppapi/c/dev/ppb_zoom_dev.h2
-rw-r--r--ppapi/c/dev/ppp_cursor_control_dev.h2
-rw-r--r--ppapi/c/dev/ppp_find_dev.h2
-rw-r--r--ppapi/c/dev/ppp_graphics_3d_dev.h2
-rw-r--r--ppapi/c/dev/ppp_printing_dev.h2
-rw-r--r--ppapi/c/dev/ppp_scrollbar_dev.h2
-rw-r--r--ppapi/c/dev/ppp_selection_dev.h2
-rw-r--r--ppapi/c/dev/ppp_widget_dev.h2
-rw-r--r--ppapi/c/dev/ppp_zoom_dev.h2
-rw-r--r--ppapi/c/pp_instance.h4
-rw-r--r--ppapi/c/pp_module.h4
-rw-r--r--ppapi/c/pp_resource.h4
-rw-r--r--ppapi/c/ppb_class.h2
-rw-r--r--ppapi/c/ppb_core.h2
-rw-r--r--ppapi/c/ppb_instance.h2
-rw-r--r--ppapi/c/ppb_url_loader.h2
-rw-r--r--ppapi/c/ppb_url_request_info.h2
-rw-r--r--ppapi/c/ppb_url_response_info.h2
-rw-r--r--ppapi/c/ppb_var.h2
-rw-r--r--ppapi/c/trusted/ppb_image_data_trusted.h2
-rw-r--r--ppapi/c/trusted/ppb_url_loader_trusted.h2
42 files changed, 50 insertions, 57 deletions
diff --git a/ppapi/c/dev/pp_video_dev.h b/ppapi/c/dev/pp_video_dev.h
index 85fe3a6..0699994 100644
--- a/ppapi/c/dev/pp_video_dev.h
+++ b/ppapi/c/dev/pp_video_dev.h
@@ -223,6 +223,11 @@ struct PP_VideoCompressedDataBuffer_Dev {
// Bit mask of PP_VideoFrameInfoFlag.
uint32_t flags;
+ // Padding to ensure the PP_Resource is 8-byte aligned relative to the
+ // start of the struct. This helps ensure PP_VideoFrameBuffer_Dev has
+ // consistent size and alignment across compilers.
+ int32_t padding;
+
// Time stamp of the frame in microsecond.
uint64_t time_stamp_us;
};
@@ -236,11 +241,6 @@ struct PP_VideoFrameBuffer_Dev {
int32_t height;
int32_t stride;
- // Padding to ensure the PP_Resource is 8-byte aligned relative to the
- // start of the struct. This helps ensure PP_VideoFrameBuffer_Dev has
- // consistent size and alignment across compilers.
- int32_t padding;
-
// TODO(wjia): uint8* would be better for some cases.
PP_Resource buffer;
} data_plane[PP_VIDEOFRAMEBUFFER_MAXNUMBERPLANES];
diff --git a/ppapi/c/dev/ppb_audio_dev.h b/ppapi/c/dev/ppb_audio_dev.h
index 1e78be2..8d4e4c5 100644
--- a/ppapi/c/dev/ppb_audio_dev.h
+++ b/ppapi/c/dev/ppb_audio_dev.h
@@ -11,7 +11,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_AUDIO_DEV_INTERFACE "PPB_Audio(Dev);0.3"
+#define PPB_AUDIO_DEV_INTERFACE "PPB_Audio(Dev);0.4"
// Callback function type for SetCallback.
typedef void (*PPB_Audio_Callback)(void* sample_buffer,
diff --git a/ppapi/c/dev/ppb_audio_trusted_dev.h b/ppapi/c/dev/ppb_audio_trusted_dev.h
index 37249af..0c1ff3b6 100644
--- a/ppapi/c/dev/ppb_audio_trusted_dev.h
+++ b/ppapi/c/dev/ppb_audio_trusted_dev.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
-#define PPB_AUDIO_TRUSTED_DEV_INTERFACE "PPB_AudioTrusted(Dev);0.2"
+#define PPB_AUDIO_TRUSTED_DEV_INTERFACE "PPB_AudioTrusted(Dev);0.3"
/**
* This interface is to be used by proxy implementations. All
diff --git a/ppapi/c/dev/ppb_buffer_dev.h b/ppapi/c/dev/ppb_buffer_dev.h
index 8c39c420..6788772 100644
--- a/ppapi/c/dev/ppb_buffer_dev.h
+++ b/ppapi/c/dev/ppb_buffer_dev.h
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_BUFFER_DEV_INTERFACE "PPB_Buffer(Dev);0.3"
+#define PPB_BUFFER_DEV_INTERFACE "PPB_Buffer(Dev);0.4"
struct PPB_Buffer_Dev {
// Allocates a buffer of the given size in bytes. The return value will have
diff --git a/ppapi/c/dev/ppb_char_set_dev.h b/ppapi/c/dev/ppb_char_set_dev.h
index 19b0f25..74c1ca5 100644
--- a/ppapi/c/dev/ppb_char_set_dev.h
+++ b/ppapi/c/dev/ppb_char_set_dev.h
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
-#define PPB_CHAR_SET_DEV_INTERFACE "PPB_CharSet(Dev);0.3"
+#define PPB_CHAR_SET_DEV_INTERFACE "PPB_CharSet(Dev);0.4"
// Specifies the error behavior for the character set conversion functions.
// This will affect two cases: where the input is not encoded correctly, and
diff --git a/ppapi/c/dev/ppb_cursor_control_dev.h b/ppapi/c/dev/ppb_cursor_control_dev.h
index 92d63ac..104f6c5 100644
--- a/ppapi/c/dev/ppb_cursor_control_dev.h
+++ b/ppapi/c/dev/ppb_cursor_control_dev.h
@@ -11,7 +11,7 @@
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_resource.h"
-#define PPB_CURSOR_CONTROL_DEV_INTERFACE "PPB_CursorControl(Dev);0.2"
+#define PPB_CURSOR_CONTROL_DEV_INTERFACE "PPB_CursorControl(Dev);0.3"
struct PPB_CursorControl_Dev {
// Set a cursor. If "type" is PP_CURSOR_TYPE_CUSTOM, then "custom_image"
diff --git a/ppapi/c/dev/ppb_directory_reader_dev.h b/ppapi/c/dev/ppb_directory_reader_dev.h
index a5f7b45..21c9824 100644
--- a/ppapi/c/dev/ppb_directory_reader_dev.h
+++ b/ppapi/c/dev/ppb_directory_reader_dev.h
@@ -16,17 +16,10 @@ struct PP_CompletionCallback;
struct PP_DirectoryEntry_Dev {
PP_Resource file_ref;
PP_FileType_Dev file_type;
-
- /** Ensure that this struct is 16-bytes wide by padding the end. Because
- * PP_Resource is an 8-byte type, some compilers align this struct on 8-byte
- * boundaries and pad it to 16 bytes even without @a padding. This makes its
- * size consistent across compilers.
- */
- int32_t padding;
};
-PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_DirectoryEntry_Dev, 16);
+PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_DirectoryEntry_Dev, 8);
-#define PPB_DIRECTORYREADER_DEV_INTERFACE "PPB_DirectoryReader(Dev);0.3"
+#define PPB_DIRECTORYREADER_DEV_INTERFACE "PPB_DirectoryReader(Dev);0.4"
struct PPB_DirectoryReader_Dev {
// Creates a DirectoryReader for the given directory. Upon success, the
diff --git a/ppapi/c/dev/ppb_file_chooser_dev.h b/ppapi/c/dev/ppb_file_chooser_dev.h
index 22d799f..0a43d11 100644
--- a/ppapi/c/dev/ppb_file_chooser_dev.h
+++ b/ppapi/c/dev/ppb_file_chooser_dev.h
@@ -30,7 +30,7 @@ struct PP_FileChooserOptions_Dev {
const char* accept_mime_types;
};
-#define PPB_FILECHOOSER_DEV_INTERFACE "PPB_FileChooser(Dev);0.2"
+#define PPB_FILECHOOSER_DEV_INTERFACE "PPB_FileChooser(Dev);0.3"
struct PPB_FileChooser_Dev {
// Creates a file chooser dialog with the specified options. The chooser is
diff --git a/ppapi/c/dev/ppb_file_io_dev.h b/ppapi/c/dev/ppb_file_io_dev.h
index 521980c..ee7324d 100644
--- a/ppapi/c/dev/ppb_file_io_dev.h
+++ b/ppapi/c/dev/ppb_file_io_dev.h
@@ -39,7 +39,7 @@ typedef enum {
} PP_FileOpenFlags_Dev;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileOpenFlags_Dev, 4);
-#define PPB_FILEIO_DEV_INTERFACE "PPB_FileIO(Dev);0.2"
+#define PPB_FILEIO_DEV_INTERFACE "PPB_FileIO(Dev);0.3"
// Use this interface to operate on a regular file (PP_FileType_Regular).
struct PPB_FileIO_Dev {
diff --git a/ppapi/c/dev/ppb_file_io_trusted_dev.h b/ppapi/c/dev/ppb_file_io_trusted_dev.h
index 433f1c7..a4cee8c 100644
--- a/ppapi/c/dev/ppb_file_io_trusted_dev.h
+++ b/ppapi/c/dev/ppb_file_io_trusted_dev.h
@@ -10,7 +10,7 @@
struct PP_CompletionCallback;
-#define PPB_FILEIOTRUSTED_DEV_INTERFACE "PPB_FileIOTrusted(Dev);0.1"
+#define PPB_FILEIOTRUSTED_DEV_INTERFACE "PPB_FileIOTrusted(Dev);0.2"
// Available only to trusted implementations.
struct PPB_FileIOTrusted_Dev {
diff --git a/ppapi/c/dev/ppb_file_ref_dev.h b/ppapi/c/dev/ppb_file_ref_dev.h
index 96f5fac..0f74a7c 100644
--- a/ppapi/c/dev/ppb_file_ref_dev.h
+++ b/ppapi/c/dev/ppb_file_ref_dev.h
@@ -11,7 +11,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_var.h"
-#define PPB_FILEREF_DEV_INTERFACE "PPB_FileRef(Dev);0.4"
+#define PPB_FILEREF_DEV_INTERFACE "PPB_FileRef(Dev);0.5"
// A FileRef is a "weak pointer" to a file in a file system. It contains a
// PP_FileSystemType identifier and a file path string.
diff --git a/ppapi/c/dev/ppb_file_system_dev.h b/ppapi/c/dev/ppb_file_system_dev.h
index 9a1f9b1..69b18bd 100644
--- a/ppapi/c/dev/ppb_file_system_dev.h
+++ b/ppapi/c/dev/ppb_file_system_dev.h
@@ -13,7 +13,7 @@
struct PP_CompletionCallback;
-#define PPB_FILESYSTEM_DEV_INTERFACE "PPB_FileSystem(Dev);0.2"
+#define PPB_FILESYSTEM_DEV_INTERFACE "PPB_FileSystem(Dev);0.3"
struct PPB_FileSystem_Dev {
// Creates a weak pointer to the filesystem of the given type.
diff --git a/ppapi/c/dev/ppb_find_dev.h b/ppapi/c/dev/ppb_find_dev.h
index 957cdfc..9a1b8b6 100644
--- a/ppapi/c/dev/ppb_find_dev.h
+++ b/ppapi/c/dev/ppb_find_dev.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_FIND_DEV_INTERFACE "PPB_Find(Dev);0.2"
+#define PPB_FIND_DEV_INTERFACE "PPB_Find(Dev);0.3"
struct PPB_Find_Dev {
// Updates the number of find results for the current search term. If
diff --git a/ppapi/c/dev/ppb_font_dev.h b/ppapi/c/dev/ppb_font_dev.h
index 8f6e5574..2262856 100644
--- a/ppapi/c/dev/ppb_font_dev.h
+++ b/ppapi/c/dev/ppb_font_dev.h
@@ -12,7 +12,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
-#define PPB_FONT_DEV_INTERFACE "PPB_Font(Dev);0.4"
+#define PPB_FONT_DEV_INTERFACE "PPB_Font(Dev);0.5"
struct PP_Point;
struct PP_Rect;
diff --git a/ppapi/c/dev/ppb_fullscreen_dev.h b/ppapi/c/dev/ppb_fullscreen_dev.h
index b6117551..ebf2ade 100644
--- a/ppapi/c/dev/ppb_fullscreen_dev.h
+++ b/ppapi/c/dev/ppb_fullscreen_dev.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_FULLSCREEN_DEV_INTERFACE "PPB_Fullscreen(Dev);0.2"
+#define PPB_FULLSCREEN_DEV_INTERFACE "PPB_Fullscreen(Dev);0.3"
// Use this interface to change a plugin instance to fullscreen mode.
struct PPB_Fullscreen_Dev {
diff --git a/ppapi/c/dev/ppb_graphics_3d_dev.h b/ppapi/c/dev/ppb_graphics_3d_dev.h
index 6d5374a..a5cfc6a 100644
--- a/ppapi/c/dev/ppb_graphics_3d_dev.h
+++ b/ppapi/c/dev/ppb_graphics_3d_dev.h
@@ -29,7 +29,7 @@
// core->ReleaseResource(context);
// core->ReleaseResource(surface);
-#define PPB_GRAPHICS_3D_DEV_INTERFACE "PPB_Graphics3D(Dev);0.2"
+#define PPB_GRAPHICS_3D_DEV_INTERFACE "PPB_Graphics3D(Dev);0.3"
struct PPB_Graphics3D_Dev {
// TODO(alokp): Do these functions need module argument.
diff --git a/ppapi/c/dev/ppb_scrollbar_dev.h b/ppapi/c/dev/ppb_scrollbar_dev.h
index 254402e..6df7683 100644
--- a/ppapi/c/dev/ppb_scrollbar_dev.h
+++ b/ppapi/c/dev/ppb_scrollbar_dev.h
@@ -21,7 +21,7 @@ typedef enum {
} PP_ScrollBy_Dev;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_ScrollBy_Dev, 4);
-#define PPB_SCROLLBAR_DEV_INTERFACE "PPB_Scrollbar(Dev);0.2"
+#define PPB_SCROLLBAR_DEV_INTERFACE "PPB_Scrollbar(Dev);0.3"
// The interface for a scrollbar. A scrollbar is a widget, so the functions
// in PPB_Widget can also be used with scrollbar objects.
diff --git a/ppapi/c/dev/ppb_testing_dev.h b/ppapi/c/dev/ppb_testing_dev.h
index 7b26c72..7383a65 100644
--- a/ppapi/c/dev/ppb_testing_dev.h
+++ b/ppapi/c/dev/ppb_testing_dev.h
@@ -12,7 +12,7 @@
struct PP_Point;
-#define PPB_TESTING_DEV_INTERFACE "PPB_Testing(Dev);0.3"
+#define PPB_TESTING_DEV_INTERFACE "PPB_Testing(Dev);0.4"
// This interface contains functions used for unit testing. Do not use in
// production code. They are not guaranteed to be available in normal plugin
diff --git a/ppapi/c/dev/ppb_transport_dev.h b/ppapi/c/dev/ppb_transport_dev.h
index 6196dad..1e56ff4 100644
--- a/ppapi/c/dev/ppb_transport_dev.h
+++ b/ppapi/c/dev/ppb_transport_dev.h
@@ -13,7 +13,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
-#define PPB_TRANSPORT_DEV_INTERFACE "PPB_Transport;0.3"
+#define PPB_TRANSPORT_DEV_INTERFACE "PPB_Transport;0.4"
struct PPB_Transport_Dev {
// Creates a new transport object with the specified name
diff --git a/ppapi/c/dev/ppb_url_util_dev.h b/ppapi/c/dev/ppb_url_util_dev.h
index cf8f287..9ea8305 100644
--- a/ppapi/c/dev/ppb_url_util_dev.h
+++ b/ppapi/c/dev/ppb_url_util_dev.h
@@ -11,7 +11,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
-#define PPB_URLUTIL_DEV_INTERFACE "PPB_UrlUtil(Dev);0.3"
+#define PPB_URLUTIL_DEV_INTERFACE "PPB_UrlUtil(Dev);0.4"
// A component specifies the range of the part of the URL. The begin specifies
// the index into the string of the first character of that component. The len
diff --git a/ppapi/c/dev/ppb_video_decoder_dev.h b/ppapi/c/dev/ppb_video_decoder_dev.h
index f4e6a31..ceb4c80 100644
--- a/ppapi/c/dev/ppb_video_decoder_dev.h
+++ b/ppapi/c/dev/ppb_video_decoder_dev.h
@@ -12,7 +12,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_completion_callback.h"
-#define PPB_VIDEODECODER_DEV_INTERFACE "PPB_VideoDecoder(Dev);0.3"
+#define PPB_VIDEODECODER_DEV_INTERFACE "PPB_VideoDecoder(Dev);0.4"
struct PPB_VideoDecoder_Dev {
// Queries capability of the decoder for |codec|.
diff --git a/ppapi/c/dev/ppb_zoom_dev.h b/ppapi/c/dev/ppb_zoom_dev.h
index 83c6f6b..b450d32 100644
--- a/ppapi/c/dev/ppb_zoom_dev.h
+++ b/ppapi/c/dev/ppb_zoom_dev.h
@@ -8,7 +8,7 @@
#include "ppapi/c/pp_instance.h"
// Zoom interface should only apply to those full-page "plugin-document".
-#define PPB_ZOOM_DEV_INTERFACE "PPB_Zoom(Dev);0.1"
+#define PPB_ZOOM_DEV_INTERFACE "PPB_Zoom(Dev);0.2"
struct PPB_Zoom_Dev {
// Informs the browser about the new zoom factor for the plugin (see
diff --git a/ppapi/c/dev/ppp_cursor_control_dev.h b/ppapi/c/dev/ppp_cursor_control_dev.h
index 8a28bf6..e0b970e 100644
--- a/ppapi/c/dev/ppp_cursor_control_dev.h
+++ b/ppapi/c/dev/ppp_cursor_control_dev.h
@@ -7,7 +7,7 @@
#include "ppapi/c/pp_instance.h"
-#define PPP_CURSOR_CONTROL_DEV_INTERFACE "PPP_CursorControl(Dev);0.1"
+#define PPP_CURSOR_CONTROL_DEV_INTERFACE "PPP_CursorControl(Dev);0.2"
struct PPP_CursorControl_Dev {
// Called when the instance looses the cursor lock, e.g. because the user
diff --git a/ppapi/c/dev/ppp_find_dev.h b/ppapi/c/dev/ppp_find_dev.h
index c97a2b4..ecf0729 100644
--- a/ppapi/c/dev/ppp_find_dev.h
+++ b/ppapi/c/dev/ppp_find_dev.h
@@ -8,7 +8,7 @@
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
-#define PPP_FIND_DEV_INTERFACE "PPP_Find(Dev);0.2"
+#define PPP_FIND_DEV_INTERFACE "PPP_Find(Dev);0.3"
struct PPP_Find_Dev {
// Finds the given UTF-8 text starting at the current selection. The number of
diff --git a/ppapi/c/dev/ppp_graphics_3d_dev.h b/ppapi/c/dev/ppp_graphics_3d_dev.h
index d0a4e16..ae9b2e1 100644
--- a/ppapi/c/dev/ppp_graphics_3d_dev.h
+++ b/ppapi/c/dev/ppp_graphics_3d_dev.h
@@ -7,7 +7,7 @@
#include "ppapi/c/pp_instance.h"
-#define PPP_GRAPHICS_3D_DEV_INTERFACE "PPP_Graphics_3D(Dev);0.1"
+#define PPP_GRAPHICS_3D_DEV_INTERFACE "PPP_Graphics_3D(Dev);0.2"
struct PPP_Graphics3D_Dev {
// Called when the OpenGL ES window is invalidated and needs to be repainted.
diff --git a/ppapi/c/dev/ppp_printing_dev.h b/ppapi/c/dev/ppp_printing_dev.h
index 800268d..805c6e2 100644
--- a/ppapi/c/dev/ppp_printing_dev.h
+++ b/ppapi/c/dev/ppp_printing_dev.h
@@ -46,7 +46,7 @@ struct PP_PrintPageNumberRange_Dev {
PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_PrintPageNumberRange_Dev, 8);
// Interface for the plugin to implement printing.
-#define PPP_PRINTING_DEV_INTERFACE "PPP_Printing(Dev);0.2"
+#define PPP_PRINTING_DEV_INTERFACE "PPP_Printing(Dev);0.3"
struct PPP_Printing_Dev {
// Returns array of supported print output formats. The array is allocated
diff --git a/ppapi/c/dev/ppp_scrollbar_dev.h b/ppapi/c/dev/ppp_scrollbar_dev.h
index 4b464d5..2a8483e 100644
--- a/ppapi/c/dev/ppp_scrollbar_dev.h
+++ b/ppapi/c/dev/ppp_scrollbar_dev.h
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_stdint.h"
// Interface for the plugin to implement when using a scrollbar widget.
-#define PPP_SCROLLBAR_DEV_INTERFACE "PPP_Scrollbar(Dev);0.1"
+#define PPP_SCROLLBAR_DEV_INTERFACE "PPP_Scrollbar(Dev);0.2"
struct PPP_Scrollbar_Dev {
// Informs the instance that the scrollbar's value has changed.
diff --git a/ppapi/c/dev/ppp_selection_dev.h b/ppapi/c/dev/ppp_selection_dev.h
index 71ca4db..dfbed35 100644
--- a/ppapi/c/dev/ppp_selection_dev.h
+++ b/ppapi/c/dev/ppp_selection_dev.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_var.h"
-#define PPP_SELECTION_DEV_INTERFACE "PPP_Selection(Dev);0.2"
+#define PPP_SELECTION_DEV_INTERFACE "PPP_Selection(Dev);0.3"
struct PPP_Selection_Dev {
/**
diff --git a/ppapi/c/dev/ppp_widget_dev.h b/ppapi/c/dev/ppp_widget_dev.h
index 8d392da..4185551 100644
--- a/ppapi/c/dev/ppp_widget_dev.h
+++ b/ppapi/c/dev/ppp_widget_dev.h
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_rect.h"
// Interface for the plugin to implement when using a widget.
-#define PPP_WIDGET_DEV_INTERFACE "PPP_Widget(Dev);0.1"
+#define PPP_WIDGET_DEV_INTERFACE "PPP_Widget(Dev);0.2"
struct PPP_Widget_Dev {
// Informs the instance that the given rectangle needs to be repainted.
diff --git a/ppapi/c/dev/ppp_zoom_dev.h b/ppapi/c/dev/ppp_zoom_dev.h
index 71f0402..e285df9 100644
--- a/ppapi/c/dev/ppp_zoom_dev.h
+++ b/ppapi/c/dev/ppp_zoom_dev.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_instance.h"
// Zoom interface should only apply to those full-page "plugin-document".
-#define PPP_ZOOM_DEV_INTERFACE "PPP_Zoom(Dev);0.2"
+#define PPP_ZOOM_DEV_INTERFACE "PPP_Zoom(Dev);0.3"
struct PPP_Zoom_Dev {
// Instruct plug-in to zoom according to the given factor and whether the zoom
diff --git a/ppapi/c/pp_instance.h b/ppapi/c/pp_instance.h
index 7195b54..87d430c 100644
--- a/ppapi/c/pp_instance.h
+++ b/ppapi/c/pp_instance.h
@@ -24,8 +24,8 @@
* is guaranteed never to be 0, so a plugin can initialize it to 0 to
* indicate a "NULL handle."
*/
-typedef int64_t PP_Instance;
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Instance, 8);
+typedef int32_t PP_Instance;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Instance, 4);
/**
* @}
diff --git a/ppapi/c/pp_module.h b/ppapi/c/pp_module.h
index 6c0ee0f..02373b2 100644
--- a/ppapi/c/pp_module.h
+++ b/ppapi/c/pp_module.h
@@ -21,8 +21,8 @@
* handle assigned by the browser to the plugin. It is guaranteed never to be
* 0, so a plugin can initialize it to 0 to indicate a "NULL handle."
*/
-typedef int64_t PP_Module;
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Module, 8);
+typedef int32_t PP_Module;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Module, 4);
/**
* @}
diff --git a/ppapi/c/pp_resource.h b/ppapi/c/pp_resource.h
index b4af2cc..e74799d 100644
--- a/ppapi/c/pp_resource.h
+++ b/ppapi/c/pp_resource.h
@@ -30,8 +30,8 @@
* it to 0 to indicate a "NULL handle." Some interfaces may return a NULL
* resource to indicate failure.
*/
-typedef int64_t PP_Resource;
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Resource, 8);
+typedef int32_t PP_Resource;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Resource, 4);
/**
* @}
diff --git a/ppapi/c/ppb_class.h b/ppapi/c/ppb_class.h
index a5619ef..ce058c5 100644
--- a/ppapi/c/ppb_class.h
+++ b/ppapi/c/ppb_class.h
@@ -11,7 +11,7 @@
#include "ppapi/c/pp_var.h"
#include "ppapi/c/ppb_var.h"
-#define PPB_CLASS_INTERFACE "PPB_Class;0.3"
+#define PPB_CLASS_INTERFACE "PPB_Class;0.4"
/**
* @file
diff --git a/ppapi/c/ppb_core.h b/ppapi/c/ppb_core.h
index 2b5c784..0d27937 100644
--- a/ppapi/c/ppb_core.h
+++ b/ppapi/c/ppb_core.h
@@ -13,7 +13,7 @@
struct PP_CompletionCallback;
-#define PPB_CORE_INTERFACE "PPB_Core;0.2"
+#define PPB_CORE_INTERFACE "PPB_Core;0.3"
/**
* @file
diff --git a/ppapi/c/ppb_instance.h b/ppapi/c/ppb_instance.h
index 5113e85..48d47a8 100644
--- a/ppapi/c/ppb_instance.h
+++ b/ppapi/c/ppb_instance.h
@@ -10,7 +10,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_var.h"
-#define PPB_INSTANCE_INTERFACE "PPB_Instance;0.3"
+#define PPB_INSTANCE_INTERFACE "PPB_Instance;0.4"
/**
* @file
diff --git a/ppapi/c/ppb_url_loader.h b/ppapi/c/ppb_url_loader.h
index 1d0c063..01390c9 100644
--- a/ppapi/c/ppb_url_loader.h
+++ b/ppapi/c/ppb_url_loader.h
@@ -12,7 +12,7 @@
struct PP_CompletionCallback;
-#define PPB_URLLOADER_INTERFACE "PPB_URLLoader;1"
+#define PPB_URLLOADER_INTERFACE "PPB_URLLoader;0.1"
// The interface for loading URLs.
//
diff --git a/ppapi/c/ppb_url_request_info.h b/ppapi/c/ppb_url_request_info.h
index f18ee52..de7e3da 100644
--- a/ppapi/c/ppb_url_request_info.h
+++ b/ppapi/c/ppb_url_request_info.h
@@ -35,7 +35,7 @@ typedef enum {
} PP_URLRequestProperty;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_URLRequestProperty, 4);
-#define PPB_URLREQUESTINFO_INTERFACE "PPB_URLRequestInfo;1.1"
+#define PPB_URLREQUESTINFO_INTERFACE "PPB_URLRequestInfo;0.1"
struct PPB_URLRequestInfo {
// Create a new URLRequestInfo object. Returns 0 if the module is invalid.
diff --git a/ppapi/c/ppb_url_response_info.h b/ppapi/c/ppb_url_response_info.h
index 756e2f8..c0d8675 100644
--- a/ppapi/c/ppb_url_response_info.h
+++ b/ppapi/c/ppb_url_response_info.h
@@ -20,7 +20,7 @@ typedef enum {
} PP_URLResponseProperty;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_URLResponseProperty, 4);
-#define PPB_URLRESPONSEINFO_INTERFACE "PPB_URLResponseInfo;1.1"
+#define PPB_URLRESPONSEINFO_INTERFACE "PPB_URLResponseInfo;0.1"
struct PPB_URLResponseInfo {
// Returns PP_TRUE if the given resource is an URLResponseInfo. Returns
diff --git a/ppapi/c/ppb_var.h b/ppapi/c/ppb_var.h
index 34ff04f..4cfe3a6 100644
--- a/ppapi/c/ppb_var.h
+++ b/ppapi/c/ppb_var.h
@@ -13,7 +13,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
-#define PPB_VAR_INTERFACE "PPB_Var;0.3"
+#define PPB_VAR_INTERFACE "PPB_Var;0.4"
/**
* @file
diff --git a/ppapi/c/trusted/ppb_image_data_trusted.h b/ppapi/c/trusted/ppb_image_data_trusted.h
index c5e63239..c8ad889 100644
--- a/ppapi/c/trusted/ppb_image_data_trusted.h
+++ b/ppapi/c/trusted/ppb_image_data_trusted.h
@@ -8,7 +8,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_resource.h"
-#define PPB_IMAGEDATA_TRUSTED_INTERFACE "PPB_ImageDataTrusted;0.3"
+#define PPB_IMAGEDATA_TRUSTED_INTERFACE "PPB_ImageDataTrusted;0.4"
struct PPB_ImageDataTrusted {
/**
diff --git a/ppapi/c/trusted/ppb_url_loader_trusted.h b/ppapi/c/trusted/ppb_url_loader_trusted.h
index 53b2b2d..f37a14b 100644
--- a/ppapi/c/trusted/ppb_url_loader_trusted.h
+++ b/ppapi/c/trusted/ppb_url_loader_trusted.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_URLLOADERTRUSTED_INTERFACE "PPB_URLLoaderTrusted;0.2"
+#define PPB_URLLOADERTRUSTED_INTERFACE "PPB_URLLoaderTrusted;0.3"
// Callback that indicates the status of the download and upload for the
// given URLLoader resource.