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

Unified Diff: cc/debug/overdraw_metrics.cc

Issue 12676029: cc: Fix capitalization style in chromified files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « cc/debug/frame_rate_counter.cc ('k') | cc/debug/rendering_stats.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/overdraw_metrics.cc
diff --git a/cc/debug/overdraw_metrics.cc b/cc/debug/overdraw_metrics.cc
index 0afaa4484475610638799ff2ca1f5c54cab1ad2e..b8a382cc40246a8f36d5702a8177c8f3817c11ee 100644
--- a/cc/debug/overdraw_metrics.cc
+++ b/cc/debug/overdraw_metrics.cc
@@ -46,13 +46,13 @@ static inline float PolygonArea(gfx::PointF points[8], int num_points) {
// of the resulting polygon.
static inline float AreaOfMappedQuad(const gfx::Transform& transform,
const gfx::QuadF& quad) {
- gfx::PointF clippedQuad[8];
+ gfx::PointF clipped_quad[8];
int num_vertices_in_clipped_quad = 0;
MathUtil::MapClippedQuad(transform,
quad,
- clippedQuad,
+ clipped_quad,
num_vertices_in_clipped_quad);
- return PolygonArea(clippedQuad, num_vertices_in_clipped_quad);
+ return PolygonArea(clipped_quad, num_vertices_in_clipped_quad);
}
void OverdrawMetrics::DidPaint(gfx::Rect painted_rect) {
« no previous file with comments | « cc/debug/frame_rate_counter.cc ('k') | cc/debug/rendering_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698