| Index: chrome/browser/shell_integration_linux.cc
|
| diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
|
| index 3a692a9ab3937bf03fb77b6f7feaab585021065d..64bb16254341334e459c6ae925c4e795346a1d3a 100644
|
| --- a/chrome/browser/shell_integration_linux.cc
|
| +++ b/chrome/browser/shell_integration_linux.cc
|
| @@ -171,7 +171,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))
|
| - base::Delete(desktop_path.Append(shortcut_filename), false);
|
| + base::DeleteFile(desktop_path.Append(shortcut_filename), false);
|
| }
|
|
|
| // Creates a shortcut with |shortcut_filename| and |contents| in the system
|
|
|