Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Side by Side Diff: base/metrics/field_trial_param_associator.h

Issue 2463223002: Store field trial parameters in shared memory (Closed)
Patch Set: refactor Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_ 5 #ifndef BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
6 #define BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_ 6 #define BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 15 matching lines...) Expand all
26 typedef std::map<std::string, std::string> FieldTrialParams; 26 typedef std::map<std::string, std::string> FieldTrialParams;
27 27
28 // Retrieve the singleton. 28 // Retrieve the singleton.
29 static FieldTrialParamAssociator* GetInstance(); 29 static FieldTrialParamAssociator* GetInstance();
30 30
31 // Sets parameters for the given field trial name and group. 31 // Sets parameters for the given field trial name and group.
32 bool AssociateFieldTrialParams(const std::string& trial_name, 32 bool AssociateFieldTrialParams(const std::string& trial_name,
33 const std::string& group_name, 33 const std::string& group_name,
34 const FieldTrialParams& params); 34 const FieldTrialParams& params);
35 35
36 // Gets the parameters for a field trial and its chosen group. 36 // Gets the parameters for a field trial.
37 bool GetFieldTrialParams(const std::string& trial_name, 37 bool GetFieldTrialParams(const std::string& trial_name,
38 FieldTrialParams* params); 38 FieldTrialParams* params);
39 39
40 // Gets the parameters for a field trial. Caller must lock.
41 bool GetFieldTrialParamsWhileLocked(const std::string& trial_name,
Alexei Svitkine (slow) 2016/11/01 14:57:16 This is not correct. The lock in question is the
lawrencewu 2016/11/01 18:29:05 Fixed by overloading GetFieldTrialParams() and cal
42 const std::string& group_name,
43 FieldTrialParams* params);
44
40 // Clears the internal field_trial_params_ mapping. 45 // Clears the internal field_trial_params_ mapping.
41 void ClearAllParamsForTesting(); 46 void ClearAllParamsForTesting();
42 47
43 private: 48 private:
44 friend struct DefaultSingletonTraits<FieldTrialParamAssociator>; 49 friend struct DefaultSingletonTraits<FieldTrialParamAssociator>;
45 50
46 // (field_trial_name, field_trial_group) 51 // (field_trial_name, field_trial_group)
47 typedef std::pair<std::string, std::string> FieldTrialKey; 52 typedef std::pair<std::string, std::string> FieldTrialKey;
48 53
49 Lock lock_; 54 Lock lock_;
50 std::map<FieldTrialKey, FieldTrialParams> field_trial_params_; 55 std::map<FieldTrialKey, FieldTrialParams> field_trial_params_;
51 56
52 DISALLOW_COPY_AND_ASSIGN(FieldTrialParamAssociator); 57 DISALLOW_COPY_AND_ASSIGN(FieldTrialParamAssociator);
53 }; 58 };
54 59
55 } // namespace base 60 } // namespace base
56 61
57 #endif // BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_ 62 #endif // BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698