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

Unified Diff: chrome/browser/chromeos/login/default_user_images.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more 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: chrome/browser/chromeos/login/default_user_images.cc
diff --git a/chrome/browser/chromeos/login/default_user_images.cc b/chrome/browser/chromeos/login/default_user_images.cc
index d2b395b91ecac95c5855f50c18b2776f1f508ea2..0c90f13840ccd6dd5076e983bc8dae839e6c5f44 100644
--- a/chrome/browser/chromeos/login/default_user_images.cc
+++ b/chrome/browser/chromeos/login/default_user_images.cc
@@ -76,7 +76,7 @@ std::string GetDefaultImageString(int index, const std::string& prefix) {
NOTREACHED();
return std::string();
}
- return StringPrintf("%s%d", prefix.c_str(), index);
+ return base::StringPrintf("%s%d", prefix.c_str(), index);
}
// Returns true if the string specified consists of the prefix and one of

Powered by Google App Engine
This is Rietveld 408576698