| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file defines implementation of GoogleChromeSxSDistribution. | 5 // This file defines implementation of GoogleChromeSxSDistribution. |
| 6 | 6 |
| 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" | 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" |
| 8 | 8 |
| 9 #include "installer_util_strings.h" | 9 #include "installer_util_strings.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() { | 27 std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() { |
| 28 return GoogleChromeDistribution::GetInstallSubDir().append( | 28 return GoogleChromeDistribution::GetInstallSubDir().append( |
| 29 installer_util::kSxSSuffix); | 29 installer_util::kSxSSuffix); |
| 30 } | 30 } |
| 31 | 31 |
| 32 std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() { | 32 std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() { |
| 33 return GoogleChromeDistribution::GetUninstallRegPath().append( | 33 return GoogleChromeDistribution::GetUninstallRegPath().append( |
| 34 installer_util::kSxSSuffix); | 34 installer_util::kSxSSuffix); |
| 35 } | 35 } |
| 36 |
| 37 bool GoogleChromeSxSDistribution::CanSetAsDefault() { |
| 38 return false; |
| 39 } |
| OLD | NEW |