Index: ppapi/c/pp_instance.h |
=================================================================== |
--- ppapi/c/pp_instance.h (revision 72639) |
+++ ppapi/c/pp_instance.h (working copy) |
@@ -8,14 +8,16 @@ |
/** |
* @file |
* Defines the API ... |
- * |
- * @addtogroup PP |
- * @{ |
*/ |
#include "ppapi/c/pp_macros.h" |
#include "ppapi/c/pp_stdint.h" |
+/** |
+ * @addtogroup Typedefs |
+ * @{ |
+ */ |
+ |
/** A PP_Instance uniquely identifies one plugin instance, which is one time |
* that a page says \<embed>. There can be multiple instances of the same plugin |
* type on a page that will all be in the same module. |
@@ -25,12 +27,11 @@ |
* indicate a "NULL handle." |
*/ |
typedef int32_t PP_Instance; |
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Instance, 4); |
- |
/** |
* @} |
- * End addtogroup PP |
*/ |
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Instance, 4); |
+ |
#endif /* PPAPI_C_PP_INSTANCE_H_ */ |