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

Unified Diff: chrome/browser/apps/ephemeral_app_service_unittest.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
« no previous file with comments | « no previous file | chrome/browser/autocomplete/bookmark_provider_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/ephemeral_app_service_unittest.cc
diff --git a/chrome/browser/apps/ephemeral_app_service_unittest.cc b/chrome/browser/apps/ephemeral_app_service_unittest.cc
index aad6627aaa0b12a19e9741c89768511daeebcc0d..34b7f5629227b2af8e0b5ed857168f61236c35f4 100644
--- a/chrome/browser/apps/ephemeral_app_service_unittest.cc
+++ b/chrome/browser/apps/ephemeral_app_service_unittest.cc
@@ -94,7 +94,7 @@ class EphemeralAppServiceTest : public testing::Test {
LaunchTimeAppMap* launch_times,
std::set<std::string>* generated_ids = NULL) {
for (int i = 0; i < count; ++i) {
- std::string app_id = base::IntToString(launch_times->size());
+ std::string app_id = base::SizeTToString(launch_times->size());
launch_times->insert(std::make_pair(
GetPastTime(reference_time, days_before, true),
app_id));
« no previous file with comments | « no previous file | chrome/browser/autocomplete/bookmark_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698