| Index: chrome/installer/setup/setup_util.cc
|
| diff --git a/chrome/installer/setup/setup_util.cc b/chrome/installer/setup/setup_util.cc
|
| index 9f112c01b44e0519e3f91b35ade471a652737139..b60a39d12844c45c05f5ea3a075cdc0938951bea 100644
|
| --- a/chrome/installer/setup/setup_util.cc
|
| +++ b/chrome/installer/setup/setup_util.cc
|
| @@ -138,7 +138,7 @@ Version* GetMaxVersionFromArchiveDir(const base::FilePath& chrome_path) {
|
| VLOG(1) << "directory found: " << find_data.cFileName;
|
|
|
| scoped_ptr<Version> found_version(
|
| - new Version(WideToASCII(find_data.cFileName)));
|
| + new Version(base::WideToASCII(find_data.cFileName)));
|
| if (found_version->IsValid() &&
|
| found_version->CompareTo(*max_version.get()) > 0) {
|
| max_version.reset(found_version.release());
|
|
|