| 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; | |
| 8 | |
| 9 package chrome_variations; | 7 package chrome_variations; |
| 10 | 8 |
| 11 import "study.proto"; | 9 import "study.proto"; |
| 12 | 10 |
| 13 // The TrialsSeed is a protobuf response from the server that contains the list | 11 // The TrialsSeed is a protobuf response from the server that contains the list |
| 14 // of studies and a serial number to uniquely identify its contents. The | 12 // 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 | 13 // serial number allows the client to easily determine if the list of |
| 16 // experiments has changed from the previous TrialsSeed seen by the client. | 14 // experiments has changed from the previous TrialsSeed seen by the client. |
| 17 // | 15 // |
| 18 // Next tag: 3 | 16 // Next tag: 3 |
| 19 message TrialsSeed { | 17 message TrialsSeed { |
| 20 optional string serial_number = 1; | 18 optional string serial_number = 1; |
| 21 repeated Study study = 2; | 19 repeated Study study = 2; |
| 22 } | 20 } |
| OLD | NEW |