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

Side by Side Diff: chrome/common/metrics/variations/experiment_labels_win.h

Issue 23579003: GCAPI should append to the existing experiment_labels instead of clobbering them. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review++ Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CHROME_COMMON_METRICS_VARIATIONS_VARIATIONS_UTIL_H_ 5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_EXPERIMENT_LABELS_WIN_H_
6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATIONS_UTIL_H_ 6 #define CHROME_COMMON_METRICS_VARIATIONS_EXPERIMENT_LABELS_WIN_H_
7
8 #include <string>
9 #include <vector>
10 7
11 #include "base/metrics/field_trial.h" 8 #include "base/metrics/field_trial.h"
12 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
13 #include "components/variations/variations_associated_data.h"
14 10
15 namespace chrome_variations { 11 namespace chrome_variations {
16 12
17 // Fills the supplied vector |name_group_ids| (which must be empty when called)
18 // with unique ActiveGroupIds for each Field Trial that has a chosen group.
19 // Field Trials for which a group has not been chosen yet are NOT returned in
20 // this list.
21 void GetFieldTrialActiveGroupIds(std::vector<ActiveGroupId>* name_group_ids);
22
23 // Fills the supplied vector |output| (which must be empty when called) with
24 // unique string representations of ActiveGroupIds for each Field Trial that
25 // has a chosen group. The strings are formatted as "<TrialName>-<GroupName>",
26 // with the names as hex strings. Field Trials for which a group has not been
27 // chosen yet are NOT returned in this list.
28 void GetFieldTrialActiveGroupIdsAsStrings(std::vector<std::string>* output);
29
30 // Get the current set of chosen FieldTrial groups (aka variations) and send
31 // them to the child process logging module so it can save it for crash dumps.
32 void SetChildProcessLoggingVariationList();
33
34 // Takes the list of active groups and builds the label for the ones that have 13 // Takes the list of active groups and builds the label for the ones that have
35 // Google Update VariationID associated with them. This will return an empty 14 // Google Update VariationID associated with them. This will return an empty
36 // string if there are no such groups. 15 // string if there are no such groups.
37 string16 BuildGoogleUpdateExperimentLabel( 16 string16 BuildGoogleUpdateExperimentLabel(
38 const base::FieldTrial::ActiveGroups& active_groups); 17 const base::FieldTrial::ActiveGroups& active_groups);
39 18
40 // Creates a final combined experiment labels string with |variation_labels| 19 // Creates a final combined experiment labels string with |variation_labels|
41 // and |other_labels|, appropriately appending a separator based on their 20 // and |other_labels|, appropriately appending a separator based on their
42 // contents. It is assumed that |variation_labels| and |other_labels| do not 21 // contents. It is assumed that |variation_labels| and |other_labels| do not
43 // have leading or trailing separators. 22 // have leading or trailing separators.
44 string16 CombineExperimentLabels(const string16& variation_labels, 23 string16 CombineExperimentLabels(const string16& variation_labels,
45 const string16& other_labels); 24 const string16& other_labels);
46 25
47 // Takes the value of experiment_labels from the registry and returns a valid 26 // Takes the value of experiment_labels from the registry and returns a valid
48 // experiment_labels string value containing only the labels that are not 27 // experiment_labels string value containing only the labels that are not
49 // associated with Chrome Variations. 28 // associated with Chrome Variations.
50 string16 ExtractNonVariationLabels(const string16& labels); 29 string16 ExtractNonVariationLabels(const string16& labels);
51 30
52 // Expose some functions for testing. These functions just wrap functionality
53 // that is implemented above.
54 namespace testing {
55
56 // Clears all of the mapped associations.
57 void ClearAllVariationIDs();
58
59 void TestGetFieldTrialActiveGroupIds(
60 const base::FieldTrial::ActiveGroups& active_groups,
61 std::vector<ActiveGroupId>* name_group_ids);
62
63 } // namespace testing
64
65 } // namespace chrome_variations 31 } // namespace chrome_variations
66 32
67 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATIONS_UTIL_H_ 33 #endif // CHROME_COMMON_METRICS_VARIATIONS_EXPERIMENT_LABELS_WIN_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/metrics/variations/experiment_labels_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698