| 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 10 matching lines...) Expand all Loading... |
| 21 // Opens the Google Chrome uninstall survey window. | 21 // Opens the Google Chrome uninstall survey window. |
| 22 // version refers to the version of Chrome being uninstalled. | 22 // version refers to the version of Chrome being uninstalled. |
| 23 // local_data_path is the path of the file containing json metrics that | 23 // local_data_path is the path of the file containing json metrics that |
| 24 // will be parsed. If this file indicates that the user has opted in to | 24 // will be parsed. If this file indicates that the user has opted in to |
| 25 // providing anonymous usage data, then some additional statistics will | 25 // providing anonymous usage data, then some additional statistics will |
| 26 // be added to the survey url. | 26 // be added to the survey url. |
| 27 // distribution_data contains Google Update related data that will be | 27 // distribution_data contains Google Update related data that will be |
| 28 // concatenated to the survey url if the file in local_data_path indicates | 28 // concatenated to the survey url if the file in local_data_path indicates |
| 29 // the user has opted in to providing anonymous usage data. | 29 // the user has opted in to providing anonymous usage data. |
| 30 virtual void DoPostUninstallOperations( | 30 virtual void DoPostUninstallOperations( |
| 31 const base::Version& version, | 31 const Version& version, |
| 32 const base::FilePath& local_data_path, | 32 const base::FilePath& local_data_path, |
| 33 const base::string16& distribution_data) OVERRIDE; | 33 const base::string16& distribution_data) OVERRIDE; |
| 34 | 34 |
| 35 virtual base::string16 GetActiveSetupGuid() OVERRIDE; | 35 virtual base::string16 GetActiveSetupGuid() OVERRIDE; |
| 36 | 36 |
| 37 virtual base::string16 GetAppGuid() OVERRIDE; | 37 virtual base::string16 GetAppGuid() OVERRIDE; |
| 38 | 38 |
| 39 virtual base::string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; | 39 virtual base::string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; |
| 40 | 40 |
| 41 virtual base::string16 GetIconFilename() OVERRIDE; | 41 virtual base::string16 GetIconFilename() OVERRIDE; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 GoogleChromeDistribution(); | 100 GoogleChromeDistribution(); |
| 101 | 101 |
| 102 private: | 102 private: |
| 103 friend class BrowserDistribution; | 103 friend class BrowserDistribution; |
| 104 | 104 |
| 105 // The product ID for Google Update. | 105 // The product ID for Google Update. |
| 106 base::string16 product_guid_; | 106 base::string16 product_guid_; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 109 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |