| Index: chrome/installer/util/package.cc
|
| ===================================================================
|
| --- chrome/installer/util/package.cc (revision 69165)
|
| +++ chrome/installer/util/package.cc (working copy)
|
| @@ -58,14 +58,14 @@
|
| FilePath Package::GetInstallerDirectory(
|
| const Version& version) const {
|
| return path_.Append(version.GetString())
|
| - .Append(installer::kInstallerDir);
|
| + .Append(installer_util::kInstallerDir);
|
| }
|
|
|
| Version* Package::GetCurrentVersion() const {
|
| scoped_ptr<Version> current_version;
|
| // Be aware that there might be a pending "new_chrome.exe" already in the
|
| // installation path.
|
| - FilePath new_chrome_exe(path_.Append(installer::kChromeNewExe));
|
| + FilePath new_chrome_exe(path_.Append(installer_util::kChromeNewExe));
|
| bool new_chrome_exists = file_util::PathExists(new_chrome_exe);
|
|
|
| for (size_t i = 0; i < products_.size(); ++i) {
|
|
|