| 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 variations; | 9 package variations; |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 required uint32 probability_weight = 2; | 66 required uint32 probability_weight = 2; |
| 67 | 67 |
| 68 // Optional id used to uniquely identify this experiment for Google web | 68 // Optional id used to uniquely identify this experiment for Google web |
| 69 // properties. | 69 // properties. |
| 70 optional uint64 google_web_experiment_id = 3; | 70 optional uint64 google_web_experiment_id = 3; |
| 71 | 71 |
| 72 // Optional id used to allow this experiment to trigger experimental | 72 // Optional id used to allow this experiment to trigger experimental |
| 73 // behavior on Google web properties. | 73 // behavior on Google web properties. |
| 74 optional uint64 google_web_trigger_experiment_id = 8; | 74 optional uint64 google_web_trigger_experiment_id = 8; |
| 75 | 75 |
| 76 // Optional id used to uniquely identify this experiment for Google Update. | |
| 77 optional uint64 google_update_experiment_id = 4; | |
| 78 | |
| 79 // Optional id used to uniquely identify this experiment for Chrome Sync. | 76 // Optional id used to uniquely identify this experiment for Chrome Sync. |
| 80 optional uint64 chrome_sync_experiment_id = 10; | 77 optional uint64 chrome_sync_experiment_id = 10; |
| 81 | 78 |
| 82 // Specifies the feature association parameters for this experiment group. | 79 // Specifies the feature association parameters for this experiment group. |
| 83 // | 80 // |
| 84 // Next tag: 5 | 81 // Next tag: 5 |
| 85 message FeatureAssociation { | 82 message FeatureAssociation { |
| 86 // Optional list of features to enable when this experiment is selected. | 83 // Optional list of features to enable when this experiment is selected. |
| 87 // Command-line overrides take precedence over this setting. No feature | 84 // Command-line overrides take precedence over this setting. No feature |
| 88 // listed here should exist in the |disable_feature| list. | 85 // listed here should exist in the |disable_feature| list. |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 // This is recommended for most studies that include client code. | 286 // This is recommended for most studies that include client code. |
| 290 ACTIVATION_EXPLICIT = 0; | 287 ACTIVATION_EXPLICIT = 0; |
| 291 // The study will be automatically activated when it is created. This | 288 // The study will be automatically activated when it is created. This |
| 292 // is recommended for studies that do not have any client logic. | 289 // is recommended for studies that do not have any client logic. |
| 293 ACTIVATION_AUTO = 1; | 290 ACTIVATION_AUTO = 1; |
| 294 } | 291 } |
| 295 | 292 |
| 296 // Activation type for this study. Defaults to ACTIVATION_EXPLICIT if omitted. | 293 // Activation type for this study. Defaults to ACTIVATION_EXPLICIT if omitted. |
| 297 optional ActivationType activation_type = 12; | 294 optional ActivationType activation_type = 12; |
| 298 } | 295 } |
| OLD | NEW |