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

Unified Diff: cc/base/histograms.h

Issue 2498703002: Increase Max Range for RasterPixelsPerMs (Closed)
Patch Set: fix histogram name Created 4 years, 1 month 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 | « no previous file | cc/tiles/tile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/histograms.h
diff --git a/cc/base/histograms.h b/cc/base/histograms.h
index a4c0c58cc90ee36dbe70605d6be194af06a2f7e8..16e059c4d43021bae199373a3bb9f50f4eecee31 100644
--- a/cc/base/histograms.h
+++ b/cc/base/histograms.h
@@ -64,8 +64,9 @@ const char* GetClientNameForMetrics();
/* runtime constant. */ \
UMA_HISTOGRAM_COUNTS(base::StringPrintf(time_histogram, client_name), \
time_sample); \
- UMA_HISTOGRAM_COUNTS(base::StringPrintf(area_histogram, client_name), \
- area_sample); \
+ UMA_HISTOGRAM_CUSTOM_COUNTS( \
+ base::StringPrintf(area_histogram, client_name), area_sample, 1, \
+ 100000000, 50); \
} \
}
« no previous file with comments | « no previous file | cc/tiles/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698