| 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 specific implementation of BrowserDistribution class for | 5 // This file defines specific implementation of BrowserDistribution class for |
| 6 // Google Chrome. | 6 // Google Chrome. |
| 7 | 7 |
| 8 #include "chrome/installer/util/google_chrome_distribution.h" | 8 #include "chrome/installer/util/google_chrome_distribution.h" |
| 9 | 9 |
| 10 #include <windows.h> | 10 #include <windows.h> |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 base::string16 key(google_update::kRegPathClientStateMedium); | 199 base::string16 key(google_update::kRegPathClientStateMedium); |
| 200 key.append(L"\\"); | 200 key.append(L"\\"); |
| 201 key.append(product_guid()); | 201 key.append(product_guid()); |
| 202 return key; | 202 return key; |
| 203 } | 203 } |
| 204 | 204 |
| 205 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { | 205 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { |
| 206 return chrome_common_net::kEchoTestServerLocation; | 206 return chrome_common_net::kEchoTestServerLocation; |
| 207 } | 207 } |
| 208 | 208 |
| 209 std::string GoogleChromeDistribution::GetHttpPipeliningTestServer() const { | |
| 210 return chrome_common_net::kPipelineTestServerBaseUrl; | |
| 211 } | |
| 212 | |
| 213 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { | 209 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { |
| 214 base::string16 sub_key(google_update::kRegPathClientState); | 210 base::string16 sub_key(google_update::kRegPathClientState); |
| 215 sub_key.append(L"\\"); | 211 sub_key.append(L"\\"); |
| 216 sub_key.append(product_guid()); | 212 sub_key.append(product_guid()); |
| 217 | 213 |
| 218 base::win::RegKey client_state_key(root_key, sub_key.c_str(), KEY_READ); | 214 base::win::RegKey client_state_key(root_key, sub_key.c_str(), KEY_READ); |
| 219 base::string16 result; | 215 base::string16 result; |
| 220 base::string16 brand_value; | 216 base::string16 brand_value; |
| 221 if (client_state_key.ReadValue(google_update::kRegRLZBrandField, | 217 if (client_state_key.ReadValue(google_update::kRegRLZBrandField, |
| 222 &brand_value) == ERROR_SUCCESS) { | 218 &brand_value) == ERROR_SUCCESS) { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 product_guid()); | 291 product_guid()); |
| 296 } | 292 } |
| 297 | 293 |
| 298 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 294 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 299 return true; | 295 return true; |
| 300 } | 296 } |
| 301 | 297 |
| 302 bool GoogleChromeDistribution::HasUserExperiments() { | 298 bool GoogleChromeDistribution::HasUserExperiments() { |
| 303 return true; | 299 return true; |
| 304 } | 300 } |
| OLD | NEW |