diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 00:09:28 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 00:09:28 +0000 |
commit | 9b37f48059bebc7fbc7ce51203ebb1eaea873548 (patch) | |
tree | 90b6d2bbb47f14fc502c50efd7bb386a5790fe9d /ppapi/c/ppp_messaging.h | |
parent | 5eef288b86b805e5d0d18d9a83a1d5416655a330 (diff) | |
download | chromium_src-9b37f48059bebc7fbc7ce51203ebb1eaea873548.zip chromium_src-9b37f48059bebc7fbc7ce51203ebb1eaea873548.tar.gz chromium_src-9b37f48059bebc7fbc7ce51203ebb1eaea873548.tar.bz2 |
More trivial cleanupi of ppapi/c headers
These headers were autogenerated from ppapi/api/*.idl
BUG= http://code.google.com/p/chromium/issues/detail?id=76271^M
TEST= run try
Review URL: http://codereview.chromium.org/7399016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppp_messaging.h')
-rw-r--r-- | ppapi/c/ppp_messaging.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/ppapi/c/ppp_messaging.h b/ppapi/c/ppp_messaging.h index ef30494..56ff612 100644 --- a/ppapi/c/ppp_messaging.h +++ b/ppapi/c/ppp_messaging.h @@ -2,16 +2,17 @@ * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ + +/* From ppp_messaging.idl modified Wed Jul 13 16:51:47 2011. */ + #ifndef PPAPI_C_PPP_MESSAGING_H_ #define PPAPI_C_PPP_MESSAGING_H_ +#include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" - -struct PP_Var; - -#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 +#include "ppapi/c/pp_macros.h" +#include "ppapi/c/pp_stdint.h" +#include "ppapi/c/pp_var.h" /** * @file @@ -21,16 +22,20 @@ struct PP_Var; * */ + /** * @addtogroup Interfaces * @{ */ - /** * The <code>PPP_Messaging</code> interface contains pointers to functions * that you must implement to handle postMessage events on the associated * DOM element. */ +#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 + struct PPP_Messaging { /** * HandleMessage() is a function that the browser calls when PostMessage() @@ -69,5 +74,6 @@ struct PPP_Messaging { /** * @} */ + #endif /* PPAPI_C_PPP_MESSAGING_H_ */ |