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

Unified Diff: chrome/browser/predictors/resource_prefetch_predictor.cc

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: chrome/browser/predictors/resource_prefetch_predictor.cc
diff --git a/chrome/browser/predictors/resource_prefetch_predictor.cc b/chrome/browser/predictors/resource_prefetch_predictor.cc
index 6327412917523e38d92116fa3fb86123fbd75c40..16beb8a1d49f8f3c7f9a2ec56c970ccf1cdd73a1 100644
--- a/chrome/browser/predictors/resource_prefetch_predictor.cc
+++ b/chrome/browser/predictors/resource_prefetch_predictor.cc
@@ -1245,7 +1245,7 @@ void ResourcePrefetchPredictor::ReportPredictedAccuracyStatsHelper(
std::string prefix = key_type == PREFETCH_KEY_TYPE_HOST ?
"ResourcePrefetchPredictor.Host.Predicted" :
"ResourcePrefetchPredictor.Url.Predicted";
- std::string suffix = "_" + base::IntToString(max_assumed_prefetched);
+ std::string suffix = "_" + base::SizeTToString(max_assumed_prefetched);
// Macros to avoid using the STATIC_HISTOGRAM_POINTER_BLOCK in UMA_HISTOGRAM
// definitions.
« no previous file with comments | « chrome/browser/media/webrtc_logging_handler_host.cc ('k') | chrome/browser/profile_resetter/automatic_profile_resetter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698