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/ppp_messaging.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/ppp_messaging.h')
-rw-r--r-- | ppapi/c/ppp_messaging.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/c/ppp_messaging.h b/ppapi/c/ppp_messaging.h index 7d5a26a..9207f4f 100644 --- a/ppapi/c/ppp_messaging.h +++ b/ppapi/c/ppp_messaging.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppp_messaging.idl modified Wed Jul 13 16:51:47 2011. */ +/* From ppp_messaging.idl modified Wed Aug 24 20:50:56 2011. */ #ifndef PPAPI_C_PPP_MESSAGING_H_ #define PPAPI_C_PPP_MESSAGING_H_ @@ -14,7 +14,6 @@ #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" -#define PPP_MESSAGING_INTERFACE_0_1 "PPP_Messaging;0.1" #define PPP_MESSAGING_INTERFACE_1_0 "PPP_Messaging;1.0" #define PPP_MESSAGING_INTERFACE PPP_MESSAGING_INTERFACE_1_0 |