diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 20:45:57 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-17 20:45:57 +0000 |
commit | 49aa13876dd02aeea1b22443a127796c9a3bfebd (patch) | |
tree | 9a5a1ecc878359f21e5fe97a9bdc6ac94fdfae3c /ppapi/c/ppp_instance.h | |
parent | 51e2f797693a966fca67779eb67475184be2c24d (diff) | |
download | chromium_src-49aa13876dd02aeea1b22443a127796c9a3bfebd.zip chromium_src-49aa13876dd02aeea1b22443a127796c9a3bfebd.tar.gz chromium_src-49aa13876dd02aeea1b22443a127796c9a3bfebd.tar.bz2 |
Update placement of interface 'Define'
A minor change to the way we output the headers. This change moves the
defines which are used to name the interfaces and thier versions to the
top of the header, moving out of the @file block. This prevents them
from being 'spewed' in the documentation.
BUG= none
TEST= none
Review URL: http://codereview.chromium.org/7669001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97201 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppp_instance.h')
-rw-r--r-- | ppapi/c/ppp_instance.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/c/ppp_instance.h b/ppapi/c/ppp_instance.h index 86a14eb..5a907bc 100644 --- a/ppapi/c/ppp_instance.h +++ b/ppapi/c/ppp_instance.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppp_instance.idl modified Tue Aug 9 09:58:45 2011. */ +/* From ppp_instance.idl modified Mon Aug 15 11:01:06 2011. */ #ifndef PPAPI_C_PPP_INSTANCE_H_ #define PPAPI_C_PPP_INSTANCE_H_ @@ -17,6 +17,9 @@ #include "ppapi/c/pp_size.h" #include "ppapi/c/pp_stdint.h" +#define PPP_INSTANCE_INTERFACE_1_0 "PPP_Instance;1.0" +#define PPP_INSTANCE_INTERFACE PPP_INSTANCE_INTERFACE_1_0 + /** * @file * This file defines the <code>PPP_Instance</code> structure - a series of @@ -35,9 +38,6 @@ * to handle events such as change of focus or input events (keyboard/mouse) * events. */ -#define PPP_INSTANCE_INTERFACE_1_0 "PPP_Instance;1.0" -#define PPP_INSTANCE_INTERFACE PPP_INSTANCE_INTERFACE_1_0 - struct PPP_Instance { /** * DidCreate() is a creation handler that is called when a new instance is |