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

Side by Side Diff: chrome/common/metrics/proto/system_profile.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
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 // Stores information about the user's brower and system configuration. 5 // Stores information about the user's brower and system configuration.
6 // The system configuration fields are recorded once per client session. 6 // The system configuration fields are recorded once per client session.
7 7
8 syntax = "proto2"; 8 syntax = "proto2";
9 9
10 option optimize_for = LITE_RUNTIME;
11
10 package metrics; 12 package metrics;
11 13
12 // Next tag: 13 14 // Next tag: 13
13 message SystemProfileProto { 15 message SystemProfileProto {
14 // The time when the client was compiled/linked, in seconds since the epoch. 16 // The time when the client was compiled/linked, in seconds since the epoch.
15 optional int64 build_timestamp = 1; 17 optional int64 build_timestamp = 1;
16 18
17 // A version number string for the application. 19 // A version number string for the application.
18 // Most commonly this is the browser version number found in a user agent 20 // Most commonly this is the browser version number found in a user agent
19 // string, and is typically a 4-tuple of numbers separated by periods. In 21 // string, and is typically a 4-tuple of numbers separated by periods. In
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 // The name of the field trial, as a 32-bit identifier. 305 // The name of the field trial, as a 32-bit identifier.
304 // Currently, the identifier is a hash of the field trial's name. 306 // Currently, the identifier is a hash of the field trial's name.
305 optional fixed32 name_id = 1; 307 optional fixed32 name_id = 1;
306 308
307 // The user's group within the field trial, as a 32-bit identifier. 309 // The user's group within the field trial, as a 32-bit identifier.
308 // Currently, the identifier is a hash of the group's name. 310 // Currently, the identifier is a hash of the group's name.
309 optional fixed32 group_id = 2; 311 optional fixed32 group_id = 2;
310 } 312 }
311 repeated FieldTrial field_trial = 9; 313 repeated FieldTrial field_trial = 9;
312 } 314 }
OLDNEW
« no previous file with comments | « chrome/common/metrics/proto/profiler_event.proto ('k') | chrome/common/metrics/proto/user_action_event.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698