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

Unified Diff: ppapi/cpp/rect.h

Issue 7617018: Small changes such as spacing and adding [in/out] identifiers after @params. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/cpp/point.h ('k') | ppapi/cpp/resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/rect.h
===================================================================
--- ppapi/cpp/rect.h (revision 96788)
+++ ppapi/cpp/rect.h (working copy)
@@ -299,7 +299,7 @@
/// IsEmpty() determines if the area of a rectangle is zero. Returns true if
/// the area of the rectangle is zero.
///
- /// @return True if the area of the rectangle is zero.
+ /// @return true if the area of the rectangle is zero.
bool IsEmpty() const {
return rect_.size.width == 0 && rect_.size.height == 0;
}
@@ -311,7 +311,7 @@
/// @param[in] point_x An int32_t value representing a x value.
/// @param[in] point_y An int32_t value representing a y value.
///
- /// @return True if the point_x and point_y fall inside the rectangle.
+ /// @return true if the point_x and point_y fall inside the rectangle.
bool Contains(int32_t point_x, int32_t point_y) const;
/// Contains() determines if the specified point is contained by this
@@ -319,7 +319,7 @@
///
/// @param[in] point A pointer to a Point representing a 2D coordinate.
///
- /// @return True if the point_x and point_y fall inside the rectangle.
+ /// @return true if the point_x and point_y fall inside the rectangle.
bool Contains(const Point& point) const {
return Contains(point.x(), point.y());
}
@@ -328,7 +328,7 @@
///
/// @param[in] rect A pointer to a <code>Rect</code>.
///
- /// @return True if the rectangle fall inside this rectangle.
+ /// @return true if the rectangle fall inside this rectangle.
bool Contains(const Rect& rect) const;
/// Insersects() determines if this rectangle intersects the specified
@@ -336,7 +336,7 @@
///
/// @param[in] rect A pointer to a <code>Rect</code>.
///
- /// @return True if the rectangle intersects this rectangle.
+ /// @return true if the rectangle intersects this rectangle.
bool Intersects(const Rect& rect) const;
/// Intersect() computes the intersection of this rectangle with the given
« no previous file with comments | « ppapi/cpp/point.h ('k') | ppapi/cpp/resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698