| 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 extends generic BrowserDistribution class to declare Google Chrome | 5 // This file extends generic BrowserDistribution class to declare Google Chrome |
| 6 // specific implementation. | 6 // specific implementation. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 10 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 // potential use in the uninstall survey. It must be called before the | 67 // potential use in the uninstall survey. It must be called before the |
| 68 // key returned by GetVersionKey() is deleted. | 68 // key returned by GetVersionKey() is deleted. |
| 69 virtual string16 GetDistributionData(HKEY root_key) OVERRIDE; | 69 virtual string16 GetDistributionData(HKEY root_key) OVERRIDE; |
| 70 | 70 |
| 71 virtual string16 GetUninstallLinkName() OVERRIDE; | 71 virtual string16 GetUninstallLinkName() OVERRIDE; |
| 72 | 72 |
| 73 virtual string16 GetUninstallRegPath() OVERRIDE; | 73 virtual string16 GetUninstallRegPath() OVERRIDE; |
| 74 | 74 |
| 75 virtual string16 GetVersionKey() OVERRIDE; | 75 virtual string16 GetVersionKey() OVERRIDE; |
| 76 | 76 |
| 77 virtual string16 GetIconFilename() OVERRIDE; |
| 78 |
| 77 virtual bool GetCommandExecuteImplClsid( | 79 virtual bool GetCommandExecuteImplClsid( |
| 78 string16* handler_class_uuid) OVERRIDE; | 80 string16* handler_class_uuid) OVERRIDE; |
| 79 | 81 |
| 80 virtual void UpdateInstallStatus( | 82 virtual void UpdateInstallStatus( |
| 81 bool system_install, | 83 bool system_install, |
| 82 installer::ArchiveType archive_type, | 84 installer::ArchiveType archive_type, |
| 83 installer::InstallStatus install_status) OVERRIDE; | 85 installer::InstallStatus install_status) OVERRIDE; |
| 84 | 86 |
| 85 virtual bool GetExperimentDetails(UserExperiment* experiment, | 87 virtual bool GetExperimentDetails(UserExperiment* experiment, |
| 86 int flavor) OVERRIDE; | 88 int flavor) OVERRIDE; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // Returns true if at least one uninstall metric was found in | 133 // Returns true if at least one uninstall metric was found in |
| 132 // uninstall_metrics_dict, false otherwise. | 134 // uninstall_metrics_dict, false otherwise. |
| 133 virtual bool BuildUninstallMetricsString( | 135 virtual bool BuildUninstallMetricsString( |
| 134 const base::DictionaryValue* uninstall_metrics_dict, string16* metrics); | 136 const base::DictionaryValue* uninstall_metrics_dict, string16* metrics); |
| 135 | 137 |
| 136 // The product ID for Google Update. | 138 // The product ID for Google Update. |
| 137 string16 product_guid_; | 139 string16 product_guid_; |
| 138 }; | 140 }; |
| 139 | 141 |
| 140 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 142 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |