Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: chrome/browser/metrics/proto/trials_seed.proto

Issue 11359146: Revert "Linux: change protobuf default option to allow building" (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/metrics/proto/study.proto ('k') | chrome/browser/net/cert_logger.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
7 package chrome_variations; 9 package chrome_variations;
8 10
9 import "study.proto"; 11 import "study.proto";
10 12
11 // The TrialsSeed is a protobuf response from the server that contains the list 13 // The TrialsSeed is a protobuf response from the server that contains the list
12 // of studies and a serial number to uniquely identify its contents. The 14 // of studies and a serial number to uniquely identify its contents. The
13 // serial number allows the client to easily determine if the list of 15 // serial number allows the client to easily determine if the list of
14 // experiments has changed from the previous TrialsSeed seen by the client. 16 // experiments has changed from the previous TrialsSeed seen by the client.
15 // 17 //
16 // Next tag: 3 18 // Next tag: 3
17 message TrialsSeed { 19 message TrialsSeed {
18 optional string serial_number = 1; 20 optional string serial_number = 1;
19 repeated Study study = 2; 21 repeated Study study = 2;
20 } 22 }
OLDNEW
« no previous file with comments | « chrome/browser/metrics/proto/study.proto ('k') | chrome/browser/net/cert_logger.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698