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; |
} |