| 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 #pragma once | 10 #pragma once |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 // distribution_data contains Google Update related data that will be | 31 // distribution_data contains Google Update related data that will be |
| 32 // concatenated to the survey url if the file in local_data_path indicates | 32 // concatenated to the survey url if the file in local_data_path indicates |
| 33 // the user has opted in to providing anonymous usage data. | 33 // the user has opted in to providing anonymous usage data. |
| 34 virtual void DoPostUninstallOperations( | 34 virtual void DoPostUninstallOperations( |
| 35 const Version& version, | 35 const Version& version, |
| 36 const FilePath& local_data_path, | 36 const FilePath& local_data_path, |
| 37 const string16& distribution_data) OVERRIDE; | 37 const string16& distribution_data) OVERRIDE; |
| 38 | 38 |
| 39 virtual string16 GetAppGuid() OVERRIDE; | 39 virtual string16 GetAppGuid() OVERRIDE; |
| 40 | 40 |
| 41 virtual string16 GetApplicationName() OVERRIDE; | 41 virtual string16 GetBaseAppName() OVERRIDE; |
| 42 | 42 |
| 43 virtual string16 GetAppShortCutName() OVERRIDE; | 43 virtual string16 GetAppShortCutName() OVERRIDE; |
| 44 | 44 |
| 45 virtual string16 GetAlternateApplicationName() OVERRIDE; | 45 virtual string16 GetAlternateApplicationName() OVERRIDE; |
| 46 | 46 |
| 47 virtual string16 GetBrowserAppId() OVERRIDE; | 47 virtual string16 GetBrowserAppId() OVERRIDE; |
| 48 | 48 |
| 49 virtual string16 GetInstallSubDir() OVERRIDE; | 49 virtual string16 GetInstallSubDir() OVERRIDE; |
| 50 | 50 |
| 51 virtual string16 GetPublisherName() OVERRIDE; | 51 virtual string16 GetPublisherName() OVERRIDE; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 // Returns true if at least one uninstall metric was found in | 134 // Returns true if at least one uninstall metric was found in |
| 135 // uninstall_metrics_dict, false otherwise. | 135 // uninstall_metrics_dict, false otherwise. |
| 136 virtual bool BuildUninstallMetricsString( | 136 virtual bool BuildUninstallMetricsString( |
| 137 base::DictionaryValue* uninstall_metrics_dict, string16* metrics); | 137 base::DictionaryValue* uninstall_metrics_dict, string16* metrics); |
| 138 | 138 |
| 139 // The product ID for Google Update. | 139 // The product ID for Google Update. |
| 140 string16 product_guid_; | 140 string16 product_guid_; |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 143 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |