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

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

Issue 2456723004: Move VariationsParamAssociator to base (Closed)
Patch Set: rebase-update 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
« no previous file with comments | « base/BUILD.gn ('k') | base/metrics/field_trial_param_associator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
6 #define BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
7
8 #include <map>
9 #include <string>
10 #include <utility>
11
12 #include "base/base_export.h"
13 #include "base/memory/singleton.h"
14 #include "base/synchronization/lock.h"
15
16 namespace base {
17
18 // Keeps track of the parameters of all field trials and ensures access to them
19 // is thread-safe.
20 class BASE_EXPORT FieldTrialParamAssociator {
21 public:
22 FieldTrialParamAssociator();
23 ~FieldTrialParamAssociator();
24
25 // Key-value mapping type for field trial parameters.
26 typedef std::map<std::string, std::string> FieldTrialParams;
27
28 // Retrieve the singleton.
29 static FieldTrialParamAssociator* GetInstance();
30
31 // Sets parameters for the given field trial name and group.
32 bool AssociateFieldTrialParams(const std::string& trial_name,
33 const std::string& group_name,
34 const FieldTrialParams& params);
35
36 // Gets the parameters for a field trial and its chosen group.
37 bool GetFieldTrialParams(const std::string& trial_name,
38 FieldTrialParams* params);
39
40 // Clears the internal field_trial_params_ mapping.
41 void ClearAllParamsForTesting();
42
43 private:
44 friend struct DefaultSingletonTraits<FieldTrialParamAssociator>;
45
46 // (field_trial_name, field_trial_group)
47 typedef std::pair<std::string, std::string> FieldTrialKey;
48
49 Lock lock_;
50 std::map<FieldTrialKey, FieldTrialParams> field_trial_params_;
51
52 DISALLOW_COPY_AND_ASSIGN(FieldTrialParamAssociator);
53 };
54
55 } // namespace base
56
57 #endif // BASE_METRICS_FIELD_TRIAL_PARAM_ASSOCIATOR_H_
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/metrics/field_trial_param_associator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698