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 d24c6ac515b062eff4fcbb768d386f5ba3b9a486..1cc9584d9adc9b95ae6d18c6a8a34c34c0f1f087 100644 |
--- a/chrome/browser/ui/web_applications/web_app_ui.cc |
+++ b/chrome/browser/ui/web_applications/web_app_ui.cc |
@@ -260,7 +260,7 @@ void UpdateShortcutWorker::CheckExistingShortcuts() { |
base::FilePath shortcut_file = path.Append(file_name_). |
ReplaceExtension(FILE_PATH_LITERAL(".lnk")); |
- if (file_util::PathExists(shortcut_file)) { |
+ if (base::PathExists(shortcut_file)) { |
shortcut_files_.push_back(shortcut_file); |
} |
} |
@@ -280,7 +280,7 @@ void UpdateShortcutWorker::UpdateShortcutsOnFileThread() { |
// Ensure web_app_path exists. web_app_path could be missing for a legacy |
// shortcut created by Gears. |
- if (!file_util::PathExists(web_app_path) && |
+ if (!base::PathExists(web_app_path) && |
!file_util::CreateDirectory(web_app_path)) { |
NOTREACHED(); |
return; |