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

Unified Diff: webkit/fileapi/file_system_origin_database.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: webkit/fileapi/file_system_origin_database.cc
diff --git a/webkit/fileapi/file_system_origin_database.cc b/webkit/fileapi/file_system_origin_database.cc
index 0300da24324f7f9f62df0dcd0c288c899e7a6f78..ef0df544a29c458f38d8127eb3bb9e858e1b8e7d 100644
--- a/webkit/fileapi/file_system_origin_database.cc
+++ b/webkit/fileapi/file_system_origin_database.cc
@@ -229,7 +229,7 @@ bool FileSystemOriginDatabase::GetPathForOrigin(
int last_path_number;
if (!GetLastPathNumber(&last_path_number))
return false;
- path_string = StringPrintf("%03u", last_path_number + 1);
+ path_string = base::StringPrintf("%03u", last_path_number + 1);
// store both back as a single transaction
leveldb::WriteBatch batch;
batch.Put(LastPathKey(), path_string);

Powered by Google App Engine
This is Rietveld 408576698