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

Unified Diff: chrome/browser/importer/firefox_importer_utils.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/importer/firefox_importer_utils.cc
diff --git a/chrome/browser/importer/firefox_importer_utils.cc b/chrome/browser/importer/firefox_importer_utils.cc
index bc86d950b3e27132728eeca2ecdfd971471f2470..0535cf64bbefdc6f5ecade5291a20578cf06f7ec 100644
--- a/chrome/browser/importer/firefox_importer_utils.cc
+++ b/chrome/browser/importer/firefox_importer_utils.cc
@@ -56,7 +56,7 @@ base::FilePath GetFirefoxProfilePath() {
base::FilePath source_path;
for (int i = 0; ; ++i) {
- std::string current_profile = StringPrintf("Profile%d", i);
+ std::string current_profile = base::StringPrintf("Profile%d", i);
if (!root.HasKey(current_profile)) {
// Profiles are continuously numbered. So we exit when we can't
// find the i-th one.

Powered by Google App Engine
This is Rietveld 408576698