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

Unified Diff: chrome/browser/ui/web_applications/web_app_ui.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
Index: chrome/browser/ui/web_applications/web_app_ui.cc
diff --git a/chrome/browser/ui/web_applications/web_app_ui.cc b/chrome/browser/ui/web_applications/web_app_ui.cc
index 86d641a0bd7c260ceba4ba9c07078b6cc4813ead..d0a1253e53f4f3be002c432bf2cf8558b3514dde 100644
--- a/chrome/browser/ui/web_applications/web_app_ui.cc
+++ b/chrome/browser/ui/web_applications/web_app_ui.cc
@@ -286,7 +286,7 @@ void UpdateShortcutWorker::UpdateShortcutsOnFileThread() {
// Ensure web_app_path exists. web_app_path could be missing for a legacy
// shortcut created by Gears.
if (!base::PathExists(web_app_path) &&
- !file_util::CreateDirectory(web_app_path)) {
+ !base::CreateDirectory(web_app_path)) {
NOTREACHED();
return;
}
« no previous file with comments | « chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc ('k') | chrome/browser/web_applications/web_app_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698