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

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

Issue 12224093: Associate Google Update experiment IDs with the BookmarkPrompt trial. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Headers Created 7 years, 10 months 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 | « chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ 5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_
6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ 6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_
7 7
8 namespace chrome_variations { 8 namespace chrome_variations {
9 9
10 // A list of Chrome Variation IDs. These IDs are associated with FieldTrials 10 // A list of Chrome Variation IDs. These IDs are associated with FieldTrials
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 EXTENDED_INSTANT_ID_BETA_CONTROL_3 = 3310085, 161 EXTENDED_INSTANT_ID_BETA_CONTROL_3 = 3310085,
162 162
163 // Reserve 100 IDs to be used by autocomplete dynamic field trials. 163 // Reserve 100 IDs to be used by autocomplete dynamic field trials.
164 // The dynamic field trials are activated by a call to 164 // The dynamic field trials are activated by a call to
165 // AutocompleteFieldTrial::ActivateDynamicFieldTrials. 165 // AutocompleteFieldTrial::ActivateDynamicFieldTrials.
166 // For more details, see 166 // For more details, see
167 // chrome/browser/autocomplete/autocomplete_field_trial.{h,cc}. 167 // chrome/browser/autocomplete/autocomplete_field_trial.{h,cc}.
168 AUTOCOMPLETE_DYNAMIC_FIELD_TRIAL_ID_MIN = 3310086, 168 AUTOCOMPLETE_DYNAMIC_FIELD_TRIAL_ID_MIN = 3310086,
169 AUTOCOMPLETE_DYANMIC_FIELD_TRIAL_ID_MAX = 3310185, 169 AUTOCOMPLETE_DYANMIC_FIELD_TRIAL_ID_MAX = 3310185,
170 170
171 // BookmarkPrompt field trial.
172 BOOKMARK_PROMPT_TRIAL_DEFAULT = 3310186,
173 BOOKMARK_PROMPT_TRIAL_CONTROL = 3310187,
174 BOOKMARK_PROMPT_TRIAL_EXPERIMENT = 3310188,
175
171 // NEXT ID: When adding new IDs, please add them above this section, starting 176 // NEXT ID: When adding new IDs, please add them above this section, starting
172 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved 177 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved
173 // range) + 1. 178 // range) + 1.
174 NEXT_ID = 3310186, 179 NEXT_ID = 3310189,
175 180
176 // USABLE IDs END HERE. 181 // USABLE IDs END HERE.
177 // 182 //
178 // The largest possible Chrome variation ID in the reserved range. When 183 // The largest possible Chrome variation ID in the reserved range. When
179 // defining your variation IDs, DO NOT exceed this value - GWS will ignore 184 // defining your variation IDs, DO NOT exceed this value - GWS will ignore
180 // your experiment! 185 // your experiment!
181 MAXIMUM_ID = 3399999, 186 MAXIMUM_ID = 3399999,
182 }; 187 };
183 188
184 } // namespace chrome_variations 189 } // namespace chrome_variations
185 190
186 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ 191 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698