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

Unified Diff: cloud_print/gcp20/prototype/print_job_handler.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 | « cloud_print/common/win/install_utils.cc ('k') | cloud_print/service/win/service_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/gcp20/prototype/print_job_handler.cc
diff --git a/cloud_print/gcp20/prototype/print_job_handler.cc b/cloud_print/gcp20/prototype/print_job_handler.cc
index 8f457e1e3d31d11a78444816185a365c15e3a725..2d46db94fe433f23df72ac5ddbbae877fc19d78f 100644
--- a/cloud_print/gcp20/prototype/print_job_handler.cc
+++ b/cloud_print/gcp20/prototype/print_job_handler.cc
@@ -230,7 +230,7 @@ bool PrintJobHandler::SavePrintJob(const std::string& content,
create_time_exploded.hour,
create_time_exploded.minute,
create_time_exploded.second);
- if (!file_util::CreateTemporaryDirInDir(directory, job_prefix, &directory)) {
+ if (!base::CreateTemporaryDirInDir(directory, job_prefix, &directory)) {
LOG(WARNING) << "Cannot create directory for " << job_prefix;
return false;
}
« no previous file with comments | « cloud_print/common/win/install_utils.cc ('k') | cloud_print/service/win/service_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698