| Index: chrome/installer/util/google_chrome_sxs_distribution.cc
|
| ===================================================================
|
| --- chrome/installer/util/google_chrome_sxs_distribution.cc (revision 69165)
|
| +++ chrome/installer/util/google_chrome_sxs_distribution.cc (working copy)
|
| @@ -21,14 +21,14 @@
|
| } // namespace
|
|
|
| GoogleChromeSxSDistribution::GoogleChromeSxSDistribution(
|
| - const installer::MasterPreferences& prefs)
|
| + const installer_util::MasterPreferences& prefs)
|
| : GoogleChromeDistribution(prefs) {
|
| GoogleChromeDistribution::set_product_guid(kChromeSxSGuid);
|
| }
|
|
|
| std::wstring GoogleChromeSxSDistribution::GetAppShortCutName() {
|
| const std::wstring& shortcut_name =
|
| - installer::GetLocalizedString(IDS_SXS_SHORTCUT_NAME_BASE);
|
| + installer_util::GetLocalizedString(IDS_SXS_SHORTCUT_NAME_BASE);
|
| return shortcut_name;
|
| }
|
|
|
| @@ -38,12 +38,12 @@
|
|
|
| std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() {
|
| return GoogleChromeDistribution::GetInstallSubDir().append(
|
| - installer::kSxSSuffix);
|
| + installer_util::kSxSSuffix);
|
| }
|
|
|
| std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() {
|
| return GoogleChromeDistribution::GetUninstallRegPath().append(
|
| - installer::kSxSSuffix);
|
| + installer_util::kSxSSuffix);
|
| }
|
|
|
| bool GoogleChromeSxSDistribution::CanSetAsDefault() {
|
| @@ -66,5 +66,5 @@
|
| void GoogleChromeSxSDistribution::AppendUninstallCommandLineFlags(
|
| CommandLine* cmd_line) {
|
| DCHECK(cmd_line);
|
| - cmd_line->AppendSwitch(installer::switches::kChromeSxS);
|
| + cmd_line->AppendSwitch(installer_util::switches::kChromeSxS);
|
| }
|
|
|