diff options
-rw-r--r-- | chrome/installer/util/google_chrome_distribution.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc index 359c7c7..735ae27 100644 --- a/chrome/installer/util/google_chrome_distribution.cc +++ b/chrome/installer/util/google_chrome_distribution.cc @@ -321,6 +321,15 @@ std::wstring GoogleChromeDistribution::GetDistributionData(RegKey* key) { result.append(L"&"); } + std::wstring client_value; + if (client_state_key.ReadValue(google_update::kRegClientField, + &client_value)) { + result.append(google_update::kRegClientField); + result.append(L"="); + result.append(client_value); + result.append(L"&"); + } + std::wstring ap_value; // If we fail to read the ap key, send up "&ap=" anyway to indicate // that this was probably a stable channel release. |