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

Unified Diff: chrome/browser/profiles/profile_io_data.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/profiles/profile_io_data.cc
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
index 1449f546eae233bfd7ebdbd47b9bacf1404a0e4a..35f0a2fbd9da150d0d5d1b7d36a6b54232f02307 100644
--- a/chrome/browser/profiles/profile_io_data.cc
+++ b/chrome/browser/profiles/profile_io_data.cc
@@ -606,7 +606,7 @@ std::string ProfileIOData::GetSSLSessionCacheShard() {
// new profile, we'll get a fresh SSL session cache which is separate from
// the other profiles.
static unsigned ssl_session_cache_instance = 0;
- return StringPrintf("profile/%u", ssl_session_cache_instance++);
+ return base::StringPrintf("profile/%u", ssl_session_cache_instance++);
}
void ProfileIOData::Init(content::ProtocolHandlerMap* protocol_handlers) const {

Powered by Google App Engine
This is Rietveld 408576698