Index: base/file_util_posix.cc |
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc |
index 1512c0f04795a8bd70ed4763e9a46be765f0b385..8bf164ace5c4a175907d416672e0507362808e6c 100644 |
--- a/base/file_util_posix.cc |
+++ b/base/file_util_posix.cc |
@@ -542,7 +542,7 @@ base::FilePath MakeUniqueDirectory(const base::FilePath& path) { |
const int kMaxAttempts = 20; |
for (int attempts = 0; attempts < kMaxAttempts; attempts++) { |
int uniquifier = |
- GetUniquePathNumber(path, FILE_PATH_LITERAL(std::string())); |
+ GetUniquePathNumber(path, base::FilePath::StringType()); |
if (uniquifier < 0) |
break; |
base::FilePath test_path = (uniquifier == 0) ? path : |