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

Unified Diff: chrome/test/chromedriver/session_commands.cc

Issue 99923002: Move temp file functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « chrome/service/service_utility_process_host.cc ('k') | chrome/test/perf/memory_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/session_commands.cc
diff --git a/chrome/test/chromedriver/session_commands.cc b/chrome/test/chromedriver/session_commands.cc
index 85809f6e04f9e38e2294500935a4e96e4e91e292..8e0ef6b9ade7e4ef8e13696f5e7ace52f7f68fe1 100644
--- a/chrome/test/chromedriver/session_commands.cc
+++ b/chrome/test/chromedriver/session_commands.cc
@@ -592,8 +592,9 @@ Status ExecuteUploadFile(
return Status(kUnknownError, "unable to create temp dir");
}
base::FilePath upload_dir;
- if (!file_util::CreateTemporaryDirInDir(
- session->temp_dir.path(), FILE_PATH_LITERAL("upload"), &upload_dir)) {
+ if (!base::CreateTemporaryDirInDir(session->temp_dir.path(),
+ FILE_PATH_LITERAL("upload"),
+ &upload_dir)) {
return Status(kUnknownError, "unable to create temp dir");
}
std::string error_msg;
« no previous file with comments | « chrome/service/service_utility_process_host.cc ('k') | chrome/test/perf/memory_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698