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

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

Issue 11228038: Linux: change protobuf default option to allow building (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
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
9 package chrome_variations; 7 package chrome_variations;
10 8
11 // This defines the Protocol Buffer representation of a Chrome Variations study 9 // This defines the Protocol Buffer representation of a Chrome Variations study
12 // as sent to clients of the Variations server. 10 // as sent to clients of the Variations server.
13 // 11 //
14 // Next tag: 11 12 // Next tag: 11
15 message Study { 13 message Study {
16 // The name of the study. Should not contain spaces or special characters. 14 // The name of the study. Should not contain spaces or special characters.
17 // Ex: "my_study" 15 // Ex: "my_study"
18 required string name = 1; 16 required string name = 1;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 // List of locales that will receive this study. If omitted, the study 119 // List of locales that will receive this study. If omitted, the study
122 // applies to all locales. 120 // applies to all locales.
123 // Ex: ["en-US", "en-CA"] 121 // Ex: ["en-US", "en-CA"]
124 repeated string locale = 6; 122 repeated string locale = 6;
125 } 123 }
126 124
127 // Filtering criteria for this study. A study that is filtered out for a given 125 // Filtering criteria for this study. A study that is filtered out for a given
128 // client is equivalent to that study not being sent at all. 126 // client is equivalent to that study not being sent at all.
129 optional Filter filter = 10; 127 optional Filter filter = 10;
130 } 128 }
OLDNEW
« no previous file with comments | « chrome/browser/history/in_memory_url_index_cache.proto ('k') | chrome/browser/metrics/proto/trials_seed.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698