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

Unified Diff: ppapi/c/pp_size.h

Issue 7241024: Mostly minor changes such as adding <code></code> around elements, a little rewriting, and a few ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « ppapi/c/pp_resource.h ('k') | ppapi/c/pp_time.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_size.h
===================================================================
--- ppapi/c/pp_size.h (revision 91140)
+++ ppapi/c/pp_size.h (working copy)
@@ -7,7 +7,7 @@
/**
* @file
- * This file defines the width and height of a 2 dimensional rectangle.
+ * This file defines the width and height of a 2D rectangle.
*/
#include "ppapi/c/pp_macros.h"
@@ -19,7 +19,7 @@
*/
/**
- * The PP_Size struct contains the size of a 2D rectangle.
+ * The <code>PP_Size</code> struct contains the size of a 2D rectangle.
*/
struct PP_Size {
/** This value represents the width of the rectangle. */
@@ -38,10 +38,13 @@
*/
/**
- * PP_MakeSize() creates a PP_Size given a width and height as int32_t values.
+ * PP_MakeSize() creates a <code>PP_Size</code> given a width and height as
+ * int32_t values.
+ *
* @param[in] w An int32_t value representing a width.
* @param[in] h An int32_t value representing a height.
- * @return A PP_Size structure.
+ *
+ * @return A <code>PP_Size</code> structure.
*/
PP_INLINE struct PP_Size PP_MakeSize(int32_t w, int32_t h) {
struct PP_Size ret;
« no previous file with comments | « ppapi/c/pp_resource.h ('k') | ppapi/c/pp_time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698