OLD | NEW |
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 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package chrome_variations; | 9 package chrome_variations; |
10 | 10 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 153 } |
154 | 154 |
155 // Filtering criteria for this study. A study that is filtered out for a given | 155 // Filtering criteria for this study. A study that is filtered out for a given |
156 // client is equivalent to that study not being sent at all. | 156 // client is equivalent to that study not being sent at all. |
157 optional Filter filter = 10; | 157 optional Filter filter = 10; |
158 | 158 |
159 // Randomization seed to be used when |consistency| is set to PERMANENT. If | 159 // Randomization seed to be used when |consistency| is set to PERMANENT. If |
160 // not specified, randomization will be done using the trial name. | 160 // not specified, randomization will be done using the trial name. |
161 optional uint32 randomization_seed = 11; | 161 optional uint32 randomization_seed = 11; |
162 } | 162 } |
OLD | NEW |