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

Unified Diff: base/os_compat_android.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: base/os_compat_android.cc
diff --git a/base/os_compat_android.cc b/base/os_compat_android.cc
index d434c5bd7def635adc6789d9bb4d07ee3b95d527..118ad5e58cc830f82abb2cfa3265e27161983b4a 100644
--- a/base/os_compat_android.cc
+++ b/base/os_compat_android.cc
@@ -18,7 +18,7 @@
extern "C" {
int futimes(int fd, const struct timeval tv[2]) {
- const std::string fd_path = StringPrintf("/proc/self/fd/%d", fd);
+ const std::string fd_path = base::StringPrintf("/proc/self/fd/%d", fd);
return utimes(fd_path.c_str(), tv);
}
« no previous file with comments | « base/file_util_posix.cc ('k') | base/process_linux.cc » ('j') | ipc/ipc_message_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698