| Index: chrome/installer/util/installer_state.cc
|
| diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc
|
| index b5fde775fc496ddc6f9980341d6d44012dd87cde..66ffb247750241d19641d8b4cdf40e2ea78bd3cc 100644
|
| --- a/chrome/installer/util/installer_state.cc
|
| +++ b/chrome/installer/util/installer_state.cc
|
| @@ -346,7 +346,7 @@ void InstallerState::set_package_type(PackageType type) {
|
|
|
| // Returns the Chrome binaries directory for multi-install or |dist|'s directory
|
| // otherwise.
|
| -FilePath InstallerState::GetDefaultProductInstallPath(
|
| +base::FilePath InstallerState::GetDefaultProductInstallPath(
|
| BrowserDistribution* dist) const {
|
| DCHECK(dist);
|
| DCHECK(package_type_ != UNKNOWN_PACKAGE_TYPE);
|
| @@ -597,7 +597,8 @@ bool InstallerState::IsChromeFrameRunning(
|
| return in_use;
|
| }
|
|
|
| -FilePath InstallerState::GetInstallerDirectory(const Version& version) const {
|
| +base::FilePath InstallerState::GetInstallerDirectory(
|
| + const Version& version) const {
|
| return target_path().Append(ASCIIToWide(version.GetString()))
|
| .Append(kInstallerDir);
|
| }
|
|
|