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

Unified Diff: ppapi/c/pp_rect.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_point.h ('k') | ppapi/c/pp_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_rect.h
===================================================================
--- ppapi/c/pp_rect.h (revision 91140)
+++ ppapi/c/pp_rect.h (working copy)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010 The Chromium Authors. All rights reserved.
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -21,7 +21,8 @@
*/
/**
- * The PP_Rect struct contains the size and location of a 2D rectangle.
+ * The <code>PP_Rect</code> struct contains the size and location of a 2D
+ * rectangle.
*/
struct PP_Rect {
@@ -45,15 +46,17 @@
*/
/**
- * PP_MakeRectFromXYWH() creates a PP_Rect given x and y coordinates and width
- * and height dimensions as int32_t values.
+ * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
+ * coordinates and width and height dimensions as int32_t values.
+ *
* @param[in] x An int32_t value representing a horizontal coordinate of a
* point, starting with 0 as the left-most coordinate.
* @param[in] y An int32_t value representing a vertical coordinate of a point,
* starting with 0 as the top-most coordinate.
* @param[in] w An int32_t value representing a width.
* @param[in] h An int32_t value representing a height.
- * @return A PP_Rect structure.
+ *
+ * @return A <code>PP_Rect</code> structure.
*/
PP_INLINE struct PP_Rect PP_MakeRectFromXYWH(int32_t x, int32_t y,
int32_t w, int32_t h) {
« no previous file with comments | « ppapi/c/pp_point.h ('k') | ppapi/c/pp_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698