diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-25 23:19:02 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-25 23:19:02 +0000 |
commit | 5e19e6be8418668ad8f120dd3452eaf3ac32431a (patch) | |
tree | ed95ce399b9e23b2911a4618b4ddf8126f89cac8 /ppapi/c/ppb_image_data.h | |
parent | d538a01ed0074232f5f7dc41154506d141322ca9 (diff) | |
download | chromium_src-5e19e6be8418668ad8f120dd3452eaf3ac32431a.zip chromium_src-5e19e6be8418668ad8f120dd3452eaf3ac32431a.tar.gz chromium_src-5e19e6be8418668ad8f120dd3452eaf3ac32431a.tar.bz2 |
Fix incorrect API version information.
Several IDL files contain references to M13 which are unused. This causes
the generator to use M13 instead of M14 as the version number for the
unchanged interface. This CL removes the unused references to M13 in
the IDL, and pushes the updated set of '*.h' removing the unused
#define of the unused version string.
BUG= http://code.google.com/p/chromium/issues/detail?id=94201
TEST= compile + try
R= brettw@chromium.org
Review URL: http://codereview.chromium.org/7748012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppb_image_data.h')
-rw-r--r-- | ppapi/c/ppb_image_data.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/c/ppb_image_data.h b/ppapi/c/ppb_image_data.h index d81a97b..8cb1f5f 100644 --- a/ppapi/c/ppb_image_data.h +++ b/ppapi/c/ppb_image_data.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_image_data.idl modified Mon Aug 15 11:01:06 2011. */ +/* From ppb_image_data.idl modified Wed Aug 24 20:50:01 2011. */ #ifndef PPAPI_C_PPB_IMAGE_DATA_H_ #define PPAPI_C_PPB_IMAGE_DATA_H_ @@ -15,7 +15,6 @@ #include "ppapi/c/pp_size.h" #include "ppapi/c/pp_stdint.h" -#define PPB_IMAGEDATA_INTERFACE_0_3 "PPB_ImageData;0.3" #define PPB_IMAGEDATA_INTERFACE_1_0 "PPB_ImageData;1.0" #define PPB_IMAGEDATA_INTERFACE PPB_IMAGEDATA_INTERFACE_1_0 |