OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 a class that contains various method related to branding. | 5 // This file defines a class that contains various method related to branding. |
6 | 6 |
7 #include "chrome/installer/util/google_chrome_binaries_distribution.h" | 7 #include "chrome/installer/util/google_chrome_binaries_distribution.h" |
8 | 8 |
9 #include "chrome/installer/util/google_update_constants.h" | 9 #include "chrome/installer/util/google_update_constants.h" |
10 #include "chrome/installer/util/google_update_settings.h" | 10 #include "chrome/installer/util/google_update_settings.h" |
11 #include "chrome/installer/util/install_util.h" | 11 #include "chrome/installer/util/install_util.h" |
12 #include "chrome/installer/util/updating_app_registration_data.h" | 12 #include "chrome/installer/util/updating_app_registration_data.h" |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
16 const wchar_t kChromeBinariesGuid[] = L"{4DC8B4CA-1BDA-483e-B5FA-D3C12E15B62D}"; | 16 const wchar_t kChromeBinariesGuid[] = L"{4DC8B4CA-1BDA-483e-B5FA-D3C12E15B62D}"; |
17 const wchar_t kChromeBinariesName[] = L"Google Chrome binaries"; | 17 const wchar_t kChromeBinariesName[] = L"Google Chrome binaries"; |
18 | 18 |
19 } // namespace | 19 } // namespace |
20 | 20 |
21 GoogleChromeBinariesDistribution::GoogleChromeBinariesDistribution() | 21 GoogleChromeBinariesDistribution::GoogleChromeBinariesDistribution() |
22 : ChromiumBinariesDistribution(std::unique_ptr<AppRegistrationData>( | 22 : ChromiumBinariesDistribution(std::unique_ptr<AppRegistrationData>( |
23 new UpdatingAppRegistrationData(kChromeBinariesGuid))) {} | 23 new UpdatingAppRegistrationData(kChromeBinariesGuid))) {} |
24 | 24 |
25 base::string16 GoogleChromeBinariesDistribution::GetDisplayName() { | 25 base::string16 GoogleChromeBinariesDistribution::GetDisplayName() { |
26 return kChromeBinariesName; | 26 return kChromeBinariesName; |
27 } | 27 } |
28 | 28 |
29 base::string16 GoogleChromeBinariesDistribution::GetShortcutName( | 29 base::string16 GoogleChromeBinariesDistribution::GetShortcutName() { |
30 ShortcutType shortcut_type) { | |
31 NOTREACHED(); | 30 NOTREACHED(); |
32 return base::string16(); | 31 return base::string16(); |
33 } | 32 } |
34 | 33 |
35 void GoogleChromeBinariesDistribution::UpdateInstallStatus(bool system_install, | 34 void GoogleChromeBinariesDistribution::UpdateInstallStatus(bool system_install, |
36 installer::ArchiveType archive_type, | 35 installer::ArchiveType archive_type, |
37 installer::InstallStatus install_status) { | 36 installer::InstallStatus install_status) { |
38 GoogleUpdateSettings::UpdateInstallStatus(system_install, | 37 GoogleUpdateSettings::UpdateInstallStatus(system_install, |
39 archive_type, InstallUtil::GetInstallReturnCode(install_status), | 38 archive_type, InstallUtil::GetInstallReturnCode(install_status), |
40 kChromeBinariesGuid); | 39 kChromeBinariesGuid); |
41 } | 40 } |
OLD | NEW |