Mac: Fix performance issues with remote CoreAnimation
[chromium-blink-merge.git] / components / variations / proto / study.proto
blobae45d165f06d38c74e99fcb7b1f440b6047f330e
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
3 // found in the LICENSE file.
5 syntax = "proto2";
7 option optimize_for = LITE_RUNTIME;
9 package variations;
11 // This defines the Protocol Buffer representation of a Chrome Variations study
12 // as sent to clients of the Variations server.
14 // Next tag: 13
15 message Study {
16   // The name of the study. Should not contain spaces or special characters.
17   // Ex: "my_study"
18   required string name = 1;
20   // The expiry date of the study in Unix time format. (Seconds since midnight
21   // January 1, 1970 UTC). See: http://en.wikipedia.org/wiki/Unix_time
22   //
23   // A study that has expired will be disabled, and users will be assigned
24   // groups based on the default_experiment_name. This will take precedence over
25   // a corresponding hardcoded field trial in the client.
26   //
27   // Ex: 1330893974  (corresponds to 2012-03-04 20:46:14Z)
28   optional int64 expiry_date = 3;
30   // Consistency setting for a study.
31   enum Consistency {
32     SESSION = 0;  // Can't change within a session.
33     PERMANENT = 1;  // Can't change for a given user.
34   }
36   // Consistency setting for this study. Optional - defaults to SESSION.
37   // Ex: PERMANENT
38   optional Consistency consistency = 7 [default = SESSION];
40   // Name of the experiment that gets the default experience. This experiment
41   // must be included in the list below.
42   // Ex: "default"
43   optional string default_experiment_name = 8;
45   // An experiment within the study.
46   //
47   // Next tag: 10
48   message Experiment {
49     // A named parameter value for this experiment.
50     //
51     // Next tag: 3
52     message Param {
53       // The name of the parameter.
54       optional string name = 1;
56       // The value of the parameter.
57       optional string value = 2;
58     }
60     // The name of the experiment within the study.
61     // Ex: "bucketA"
62     required string name = 1;
64     // The cut of the total probability taken for this experiment (the x in
65     // x / N, where N is the sum of all x’s).  Ex: "50"
66     required uint32 probability_weight = 2;
68     // Optional id used to uniquely identify this experiment for Google web
69     // properties.
70     optional uint64 google_web_experiment_id = 3;
72     // Optional id used to allow this experiment to trigger experimental
73     // behavior on Google web properties.
74     optional uint64 google_web_trigger_experiment_id = 8;
76     // Optional id used to uniquely identify this experiment for Google Update.
77     optional uint64 google_update_experiment_id = 4;
79     // Optional name of a Chrome flag that, when present, causes this experiment
80     // to be forced. If the forcing_flag field is set, users will not be
81     // assigned to this experiment unless that flag is present in Chrome's
82     // command line.
83     optional string forcing_flag = 5;
85     // Parameter values for this experiment.
86     repeated Param param = 6;
88     enum Type {
89       // Regular experiment group. This is the default value and can be omitted.
90       NORMAL = 0;
92       // Changes to this experiment group are ignored for the purposes of
93       // kill-switch triggering. Included to allow the flexibility to not
94       // trigger this logic for specific cases (e.g. a group rename without
95       // any functionality changes).
96       IGNORE_CHANGE = 1;
98       // This is a kill-switch group that should be killed at "best effort"
99       // priority, e.g. with a hot dog menu badge. The experiment must have a
100       // probability_weight of 0.
101       KILL_BEST_EFFORT = 2;
103       // This is a kill-switch group that should be killed with "critical"
104       // priority. Depending on platform this may result in showing a
105       // non-dismissible restart prompt with a timer. This should only be used
106       // in very serious emergency circumstances. The experiment must have a
107       // probability_weight of 0.
108       KILL_CRITICAL = 3;
109     }
110     optional Type type = 7 [default = NORMAL];
112     // A UI string to override, and the new value to use.
113     message OverrideUIString {
114       // The first 32 bits of the MD5 hash digest of the resource name to
115       // override.
116       // e.g. Hash("IDS_BOOKMARK_BAR_UNDO")
117       optional fixed32 name_hash = 1;
119       // The new value of the string being overridden.
120       // e.g. "Undo"
121       optional string value = 2;
122     }
123     repeated OverrideUIString override_ui_string = 9;
124   }
126   // List of experiments in this study. This list should include the default /
127   // control experiment.
128   //
129   // For example, to specify that 99% of users get the default behavior, while
130   // 0.5% of users get experience "A" and 0.5% of users get experience "B",
131   // specify the values below.
132   // Ex: { "default": 990, "A": 5, "B": 5 }
133   repeated Experiment experiment = 9;
135   // Possible Chrome release channels.
136   // See: http://dev.chromium.org/getting-involved/dev-channel
137   enum Channel {
138     // UNKNOWN value is defined here for the benefit of code using this enum
139     // type, but is not actually meant to be encoded in the protobuf.
140     UNKNOWN = -1;
141     CANARY = 0;
142     DEV = 1;
143     BETA = 2;
144     STABLE = 3;
145   }
147   // Possible Chrome operating system platforms.
148   enum Platform {
149     PLATFORM_WINDOWS  = 0;
150     PLATFORM_MAC      = 1;
151     PLATFORM_LINUX    = 2;
152     PLATFORM_CHROMEOS = 3;
153     PLATFORM_ANDROID  = 4;
154     PLATFORM_IOS      = 5;
155   }
157   // Possible form factors Chrome is running on.
158   enum FormFactor {
159     DESKTOP = 0;
160     PHONE   = 1;
161     TABLET  = 2;
162   }
164   // Filtering criteria specifying whether this study is applicable to a given
165   // Chrome instance.
166   //
167   // Next tag: 10
168   message Filter {
169     // The start date of the study in Unix time format. (Seconds since midnight
170     // January 1, 1970 UTC). See: http://en.wikipedia.org/wiki/Unix_time
171     // Ex: 1330893974  (corresponds to 2012-03-04 20:46:14Z)
172     optional int64 start_date = 1;
174     // The minimum Chrome version for this study, allowing a trailing '*'
175     // character for pattern matching. Inclusive. (To check for a match, iterate
176     // over each component checking >= until a * or end of string is reached.)
177     // Optional - if not specified, there is no minimum version.
178     // Ex: "17.0.963.46", "17.0.963.*", "17.*"
179     optional string min_version = 2;
181     // The maximum Chrome version for this study; same formatting as
182     // |min_version| above. Inclusive. (To check for a match, iterate over each
183     // component checking <= until a * or end of string is reached.)
184     // Optional - if not specified, there is no maximum version.
185     // Ex: "19.*"
186     optional string max_version = 3;
188     // List of channels that will receive this study. If omitted, the study
189     // applies to all channels.
190     // Ex: [BETA, STABLE]
191     repeated Channel channel = 4;
193     // List of platforms that will receive this study. If omitted, the study
194     // applies to all platforms.
195     // Ex: [PLATFORM_WINDOWS, PLATFORM_MAC]
196     repeated Platform platform = 5;
198     // List of locales that will receive this study. If omitted, the study
199     // applies to all locales.
200     // Ex: ["en-US", "en-CA"]
201     repeated string locale = 6;
203     // List of form factors that will receive this study. If omitted, the study
204     // applies to all form factors.
205     // Ex: [PHONE, TABLET]
206     repeated FormFactor form_factor = 7;
208     // List of ChromeOS hardware classes that will receive this study. Each
209     // entry is treated as a substring of the actual device hardware_class,
210     // so "FOO" will match the client's hardware class "Device FOOBAR". If
211     // omitted, the study applies to all hardware classes unless
212     // |exclude_hardware_class| is specified. Mutually exclusive with
213     // |exclude_hardware_class|.
214     repeated string hardware_class = 8;
216     // List of ChromeOS hardware classes that will be excluded in this
217     // study. Each entry is treated as a substring of the actual device
218     // hardware_class, so "FOO" will match the client's hardware class
219     // "Device FOOBAR". If omitted, the study applies to all hardware classes
220     // unless |hardware_class| is specified. Mutually exclusive with
221     // |hardware_class|.
222     repeated string exclude_hardware_class = 9;
223   }
225   // Filtering criteria for this study. A study that is filtered out for a given
226   // client is equivalent to that study not being sent at all.
227   optional Filter filter = 10;
229   // Randomization seed to be used when |consistency| is set to PERMANENT. If
230   // not specified, randomization will be done using the trial name.
231   optional uint32 randomization_seed = 11;
233   // Specifies whether the study starts as active initially, or whether it
234   // requires the client to query its state before it is marked as active.
235   enum ActivationType {
236     // The study will be activated when its state is queried by the client.
237     // This is recommended for most studies that include client code.
238     ACTIVATION_EXPLICIT  = 0;
239     // The study will be automatically activated when it is created. This
240     // is recommended for studies that do not have any client logic.
241     ACTIVATION_AUTO      = 1;
242   }
244   // Activation type for this study. Defaults to ACTIVATION_EXPLICIT if omitted.
245   optional ActivationType activation_type = 12;