summaryrefslogtreecommitdiff
path: root/chromium/components/variations/proto/study.proto
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/variations/proto/study.proto')
-rw-r--r--chromium/components/variations/proto/study.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/components/variations/proto/study.proto b/chromium/components/variations/proto/study.proto
index 0169db04e26..0993802180c 100644
--- a/chromium/components/variations/proto/study.proto
+++ b/chromium/components/variations/proto/study.proto
@@ -334,10 +334,10 @@ message Study {
enum ActivationType {
// The study will be activated when its state is queried by the client.
// This is recommended for most studies that include client code.
- ACTIVATION_EXPLICIT = 0;
+ ACTIVATE_ON_QUERY = 0;
// The study will be automatically activated when it is created. This
// is recommended for studies that do not have any client logic.
- ACTIVATION_AUTO = 1;
+ ACTIVATE_ON_STARTUP = 1;
}
// Activation type for this study. Defaults to ACTIVATION_EXPLICIT if omitted.