| Index: chrome/installer/util/delete_after_reboot_helper.cc
|
| diff --git a/chrome/installer/util/delete_after_reboot_helper.cc b/chrome/installer/util/delete_after_reboot_helper.cc
|
| index b9aeb439bcae2dcebe82197f42f3532ba423ab7a..bc7cd2bf4f3b74a65c528acdbd25ad08a1bbb69e 100644
|
| --- a/chrome/installer/util/delete_after_reboot_helper.cc
|
| +++ b/chrome/installer/util/delete_after_reboot_helper.cc
|
| @@ -248,7 +248,7 @@ void StringArrayToMultiSZBytes(const std::vector<PendingMove>& strings,
|
| base::FilePath GetShortPathName(const base::FilePath& path) {
|
| std::wstring short_path;
|
| DWORD length = GetShortPathName(path.value().c_str(),
|
| - WriteInto(&short_path, MAX_PATH),
|
| + base::WriteInto(&short_path, MAX_PATH),
|
| MAX_PATH);
|
| DWORD last_error = ::GetLastError();
|
| DLOG_IF(WARNING, length == 0 && last_error != ERROR_PATH_NOT_FOUND)
|
|
|