| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual base::string16 GetAppDescription() OVERRIDE; | 57 virtual base::string16 GetAppDescription() OVERRIDE; |
| 58 | 58 |
| 59 virtual std::string GetSafeBrowsingName() OVERRIDE; | 59 virtual std::string GetSafeBrowsingName() OVERRIDE; |
| 60 | 60 |
| 61 virtual base::string16 GetStateKey() OVERRIDE; | 61 virtual base::string16 GetStateKey() OVERRIDE; |
| 62 | 62 |
| 63 virtual base::string16 GetStateMediumKey() OVERRIDE; | 63 virtual base::string16 GetStateMediumKey() OVERRIDE; |
| 64 | 64 |
| 65 virtual std::string GetNetworkStatsServer() const OVERRIDE; | 65 virtual std::string GetNetworkStatsServer() const OVERRIDE; |
| 66 | 66 |
| 67 virtual std::string GetHttpPipeliningTestServer() const OVERRIDE; | |
| 68 | |
| 69 // This method reads data from the Google Update ClientState key for | 67 // This method reads data from the Google Update ClientState key for |
| 70 // potential use in the uninstall survey. It must be called before the | 68 // potential use in the uninstall survey. It must be called before the |
| 71 // key returned by GetVersionKey() is deleted. | 69 // key returned by GetVersionKey() is deleted. |
| 72 virtual base::string16 GetDistributionData(HKEY root_key) OVERRIDE; | 70 virtual base::string16 GetDistributionData(HKEY root_key) OVERRIDE; |
| 73 | 71 |
| 74 virtual base::string16 GetUninstallLinkName() OVERRIDE; | 72 virtual base::string16 GetUninstallLinkName() OVERRIDE; |
| 75 | 73 |
| 76 virtual base::string16 GetUninstallRegPath() OVERRIDE; | 74 virtual base::string16 GetUninstallRegPath() OVERRIDE; |
| 77 | 75 |
| 78 virtual base::string16 GetVersionKey() OVERRIDE; | 76 virtual base::string16 GetVersionKey() OVERRIDE; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 100 GoogleChromeDistribution(); | 98 GoogleChromeDistribution(); |
| 101 | 99 |
| 102 private: | 100 private: |
| 103 friend class BrowserDistribution; | 101 friend class BrowserDistribution; |
| 104 | 102 |
| 105 // The product ID for Google Update. | 103 // The product ID for Google Update. |
| 106 base::string16 product_guid_; | 104 base::string16 product_guid_; |
| 107 }; | 105 }; |
| 108 | 106 |
| 109 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 107 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |