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

Unified Diff: base/file_util_posix.cc

Issue 13937002: Really fix build after r193020. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_file_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 :
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_file_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698