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

Unified Diff: cc/debug/overdraw_metrics.h

Issue 13051003: cpplint.py pass on cc/(base|debug|quads|resources)/ (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
Index: cc/debug/overdraw_metrics.h
diff --git a/cc/debug/overdraw_metrics.h b/cc/debug/overdraw_metrics.h
index fcbd6ffcdbbc2fc135ebb627646b5484980ccc78..43bd19baa73e19d46457e59d0b4ada99048fa81b 100644
--- a/cc/debug/overdraw_metrics.h
+++ b/cc/debug/overdraw_metrics.h
@@ -21,7 +21,7 @@ class OverdrawMetrics {
public:
static scoped_ptr<OverdrawMetrics> Create(bool record_metrics_for_frame) {
return make_scoped_ptr(new OverdrawMetrics(record_metrics_for_frame));
- }
+ }
// These methods are used for saving metrics during update/commit.
@@ -93,9 +93,9 @@ class OverdrawMetrics {
// Count of tiles that were invalidated but not uploaded.
int tiles_culled_for_upload_;
// Count the number of bytes in contents textures.
- unsigned long long contents_texture_use_bytes_;
+ uint64 contents_texture_use_bytes_;
// Count the number of bytes in RenderSurfaceImpl textures.
- unsigned long long render_surface_texture_use_bytes_;
+ uint64 render_surface_texture_use_bytes_;
// These values are used for saving metrics during draw.

Powered by Google App Engine
This is Rietveld 408576698