| Index: chrome/browser/shell_integration_linux.cc
|
| diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
|
| index bb205506173d3dceae4e5074c765224e9f8ba18b..462124f39a7a334da06b6b70408aa470cb9b26e4 100644
|
| --- a/chrome/browser/shell_integration_linux.cc
|
| +++ b/chrome/browser/shell_integration_linux.cc
|
| @@ -170,7 +170,7 @@ bool CreateShortcutOnDesktop(const base::FilePath& shortcut_filename,
|
| void DeleteShortcutOnDesktop(const base::FilePath& shortcut_filename) {
|
| base::FilePath desktop_path;
|
| if (PathService::Get(base::DIR_USER_DESKTOP, &desktop_path))
|
| - file_util::Delete(desktop_path.Append(shortcut_filename), false);
|
| + base::Delete(desktop_path.Append(shortcut_filename), false);
|
| }
|
|
|
| // Creates a shortcut with |shortcut_filename| and |contents| in the system
|
|
|