Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: ppapi/c/pp_instance.h

Issue 6297018: Removed Doxygen groupings by ppb_, pp_, and ppp_. Added grouping by construct... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_ */

Powered by Google App Engine
This is Rietveld 408576698