Roll src/third_party/WebKit 3aea697:d9c6159 (svn 201973:201974)
[chromium-blink-merge.git] / components / variations / proto / variations_seed.proto
blobcfb58fed6699b57e745fe4f08f5f668bd9532566
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 import "study.proto";
13 // The VariationsSeed is a protobuf response from the server that contains the
14 // list of studies and a serial number to uniquely identify its contents. The
15 // serial number allows the client to easily determine if the list of
16 // experiments has changed from the previous VariationsSeed seen by the client.
18 // Next tag: 4
19 message VariationsSeed {
20   optional string serial_number = 1;
21   repeated Study study = 2;
23   // Lowercase ISO 3166-1 alpha-2 country code of the client, according to IP
24   // address.
25   optional string country_code = 3;