| 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 declares a class that contains various method related to branding. | 5 // This file declares a class that contains various method related to branding. |
| 6 | 6 |
| 7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 virtual base::string16 GetLongAppDescription(); | 118 virtual base::string16 GetLongAppDescription(); |
| 119 | 119 |
| 120 virtual std::string GetSafeBrowsingName(); | 120 virtual std::string GetSafeBrowsingName(); |
| 121 | 121 |
| 122 virtual base::string16 GetStateKey(); | 122 virtual base::string16 GetStateKey(); |
| 123 | 123 |
| 124 virtual base::string16 GetStateMediumKey(); | 124 virtual base::string16 GetStateMediumKey(); |
| 125 | 125 |
| 126 virtual std::string GetNetworkStatsServer() const; | 126 virtual std::string GetNetworkStatsServer() const; |
| 127 | 127 |
| 128 virtual std::string GetHttpPipeliningTestServer() const; | |
| 129 | |
| 130 #if defined(OS_WIN) | 128 #if defined(OS_WIN) |
| 131 virtual base::string16 GetDistributionData(HKEY root_key); | 129 virtual base::string16 GetDistributionData(HKEY root_key); |
| 132 #endif | 130 #endif |
| 133 | 131 |
| 134 virtual base::string16 GetUninstallLinkName(); | 132 virtual base::string16 GetUninstallLinkName(); |
| 135 | 133 |
| 136 virtual base::string16 GetUninstallRegPath(); | 134 virtual base::string16 GetUninstallRegPath(); |
| 137 | 135 |
| 138 virtual base::string16 GetVersionKey(); | 136 virtual base::string16 GetVersionKey(); |
| 139 | 137 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 170 |
| 173 const Type type_; | 171 const Type type_; |
| 174 | 172 |
| 175 private: | 173 private: |
| 176 BrowserDistribution(); | 174 BrowserDistribution(); |
| 177 | 175 |
| 178 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); | 176 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); |
| 179 }; | 177 }; |
| 180 | 178 |
| 181 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 179 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| OLD | NEW |