| 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 defines a class that contains various method related to branding. | 5 // This file defines a class that contains various method related to branding. |
| 6 // It provides only default implementations of these methods. Usually to add | 6 // It provides only default implementations of these methods. Usually to add |
| 7 // specific branding, we will need to extend this class with a custom | 7 // specific branding, we will need to extend this class with a custom |
| 8 // implementation. | 8 // implementation. |
| 9 | 9 |
| 10 #include "chrome/installer/util/browser_distribution.h" | 10 #include "chrome/installer/util/browser_distribution.h" |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 } | 229 } |
| 230 | 230 |
| 231 base::string16 BrowserDistribution::GetStateMediumKey() { | 231 base::string16 BrowserDistribution::GetStateMediumKey() { |
| 232 return L"Software\\Chromium"; | 232 return L"Software\\Chromium"; |
| 233 } | 233 } |
| 234 | 234 |
| 235 std::string BrowserDistribution::GetNetworkStatsServer() const { | 235 std::string BrowserDistribution::GetNetworkStatsServer() const { |
| 236 return ""; | 236 return ""; |
| 237 } | 237 } |
| 238 | 238 |
| 239 std::string BrowserDistribution::GetHttpPipeliningTestServer() const { | |
| 240 return ""; | |
| 241 } | |
| 242 | |
| 243 base::string16 BrowserDistribution::GetDistributionData(HKEY root_key) { | 239 base::string16 BrowserDistribution::GetDistributionData(HKEY root_key) { |
| 244 return L""; | 240 return L""; |
| 245 } | 241 } |
| 246 | 242 |
| 247 base::string16 BrowserDistribution::GetUninstallLinkName() { | 243 base::string16 BrowserDistribution::GetUninstallLinkName() { |
| 248 return L"Uninstall Chromium"; | 244 return L"Uninstall Chromium"; |
| 249 } | 245 } |
| 250 | 246 |
| 251 base::string16 BrowserDistribution::GetUninstallRegPath() { | 247 base::string16 BrowserDistribution::GetUninstallRegPath() { |
| 252 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; | 248 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 installer::InstallStatus install_status) { | 281 installer::InstallStatus install_status) { |
| 286 } | 282 } |
| 287 | 283 |
| 288 bool BrowserDistribution::ShouldSetExperimentLabels() { | 284 bool BrowserDistribution::ShouldSetExperimentLabels() { |
| 289 return false; | 285 return false; |
| 290 } | 286 } |
| 291 | 287 |
| 292 bool BrowserDistribution::HasUserExperiments() { | 288 bool BrowserDistribution::HasUserExperiments() { |
| 293 return false; | 289 return false; |
| 294 } | 290 } |
| OLD | NEW |