| Index: chrome/installer/setup/uninstall.cc
|
| diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc
|
| index 4611a2cef13c2846f023e89b42df5b03e3c64753..209ff786d9f40c42ba3b8f0660fed666e077e168 100644
|
| --- a/chrome/installer/setup/uninstall.cc
|
| +++ b/chrome/installer/setup/uninstall.cc
|
| @@ -19,6 +19,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "base/win/registry.h"
|
| #include "base/win/scoped_handle.h"
|
| +#include "base/win/shortcut.h"
|
| #include "base/win/windows_version.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_paths_internal.h"
|
| @@ -311,7 +312,7 @@ void DeleteChromeShortcuts(const InstallerState& installer_state,
|
| VLOG(1) << "Unpinning shortcut at " << shortcut_link.value()
|
| << " from taskbar";
|
| // Ignore return value: keep uninstalling if the unpin fails.
|
| - file_util::TaskbarUnpinShortcutLink(shortcut_link.value().c_str());
|
| + base::win::TaskbarUnpinShortcutLink(shortcut_link.value().c_str());
|
|
|
| VLOG(1) << "Deleting shortcut " << shortcut_path.value();
|
| if (!file_util::Delete(shortcut_path, true))
|
|
|