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

Unified Diff: chrome/browser/web_applications/web_app_win.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 | « chrome/browser/web_applications/web_app_mac.mm ('k') | chrome/common/auto_start_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_applications/web_app_win.cc
diff --git a/chrome/browser/web_applications/web_app_win.cc b/chrome/browser/web_applications/web_app_win.cc
index 9c43e89b4b094051e51dfc7a0754f19ba4ebe59b..1187cc387b913540b1d2bd070662247742803f0b 100644
--- a/chrome/browser/web_applications/web_app_win.cc
+++ b/chrome/browser/web_applications/web_app_win.cc
@@ -167,7 +167,7 @@ bool CreateShortcutsInPaths(
std::vector<base::FilePath>* out_filenames) {
// Ensure web_app_path exists.
if (!base::PathExists(web_app_path) &&
- !file_util::CreateDirectory(web_app_path)) {
+ !base::CreateDirectory(web_app_path)) {
return false;
}
@@ -244,7 +244,7 @@ bool CreateShortcutsInPaths(
shortcut_properties.set_app_id(app_id);
shortcut_properties.set_dual_mode(false);
if (!base::PathExists(shortcut_file.DirName()) &&
- !file_util::CreateDirectory(shortcut_file.DirName())) {
+ !base::CreateDirectory(shortcut_file.DirName())) {
NOTREACHED();
return false;
}
« no previous file with comments | « chrome/browser/web_applications/web_app_mac.mm ('k') | chrome/common/auto_start_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698