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

Unified Diff: cloud_print/service/win/installer.cc

Issue 100573002: Move directory creation 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/gcp20/prototype/print_job_handler.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/service/win/installer.cc
diff --git a/cloud_print/service/win/installer.cc b/cloud_print/service/win/installer.cc
index 9a2602d9f100a649219561fd08f1e8a40e3e9a85..a08b14450733cb7cc105b4d9d3de4d5ff7a76990 100644
--- a/cloud_print/service/win/installer.cc
+++ b/cloud_print/service/win/installer.cc
@@ -38,7 +38,7 @@ void CreateShortcut(int dir_key, bool with_subdir,
base::FilePath path = GetShortcutPath(dir_key, with_subdir);
if (path.empty())
return;
- file_util::CreateDirectory(path.DirName());
+ base::CreateDirectory(path.DirName());
base::win::ShortcutProperties properties;
base::FilePath exe_path;
« no previous file with comments | « cloud_print/gcp20/prototype/print_job_handler.cc ('k') | cloud_print/service/win/service_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698