Index: base/process_util_linux.cc |
diff --git a/base/process_util_linux.cc b/base/process_util_linux.cc |
index 4cd27f66119c40a2f897f9ae1af3dba80f7dffe2..fea4347527be03a963764c10b92765ef7bf42d1d 100644 |
--- a/base/process_util_linux.cc |
+++ b/base/process_util_linux.cc |
@@ -17,6 +17,7 @@ |
#include "base/file_util.h" |
#include "base/logging.h" |
+#include "base/stringprintf.h" |
#include "base/string_number_conversions.h" |
#include "base/string_split.h" |
#include "base/string_tokenizer.h" |
@@ -75,7 +76,7 @@ int GetProcessCPU(pid_t pid) { |
base::ThreadRestrictions::ScopedAllowIO allow_io; |
// Use /proc/<pid>/task to find all threads and parse their /stat file. |
- FilePath path = FilePath(StringPrintf("/proc/%d/task/", pid)); |
+ FilePath path = FilePath(base::StringPrintf("/proc/%d/task/", pid)); |
DIR* dir = opendir(path.value().c_str()); |
if (!dir) { |