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 #include "chrome/installer/util/google_update_settings.h" | 5 #include "chrome/installer/util/google_update_settings.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 success = client_state.DeleteValue(google_update::kExperimentLabels) | 661 success = client_state.DeleteValue(google_update::kExperimentLabels) |
662 == ERROR_SUCCESS; | 662 == ERROR_SUCCESS; |
663 } else { | 663 } else { |
664 success = client_state.WriteValue(google_update::kExperimentLabels, | 664 success = client_state.WriteValue(google_update::kExperimentLabels, |
665 experiment_labels.c_str()) == ERROR_SUCCESS; | 665 experiment_labels.c_str()) == ERROR_SUCCESS; |
666 } | 666 } |
667 } | 667 } |
668 | 668 |
669 return success; | 669 return success; |
670 } | 670 } |
| 671 |
| 672 bool GoogleUpdateSettings::ReadExperimentLabels( |
| 673 bool system_install, |
| 674 string16* experiment_labels) { |
| 675 HKEY reg_root = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; |
| 676 |
| 677 // If this distribution does not set the experiment labels, don't bother |
| 678 // reading. |
| 679 bool success = false; |
| 680 BrowserDistribution* dist = BrowserDistribution::GetDistribution(); |
| 681 if (dist->ShouldSetExperimentLabels()) { |
| 682 string16 client_state_path( |
| 683 system_install ? dist->GetStateMediumKey() : dist->GetStateKey()); |
| 684 RegKey client_state(reg_root, client_state_path.c_str(), KEY_QUERY_VALUE); |
| 685 success = client_state.ReadValue(google_update::kExperimentLabels, |
| 686 experiment_labels) == ERROR_SUCCESS; |
| 687 } |
| 688 |
| 689 return success; |
| 690 } |
OLD | NEW |