blob: 74d6703e3a0a6aba6aa6c455b3f87efa203f2c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Summary of Chrome variations from experiments.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package metrics;
message ChromeVariations {
// A list of Chrome experiment variation IDs that are active.
repeated int32 variation_id = 1;
}
|