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

Side by Side Diff: chrome/common/metrics/proto/system_profile.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 // 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
12 package metrics; 10 package metrics;
13 11
14 // Next tag: 13 12 // Next tag: 13
15 message SystemProfileProto { 13 message SystemProfileProto {
16 // The time when the client was compiled/linked, in seconds since the epoch. 14 // The time when the client was compiled/linked, in seconds since the epoch.
17 optional int64 build_timestamp = 1; 15 optional int64 build_timestamp = 1;
18 16
19 // A version number string for the application. 17 // A version number string for the application.
20 // Most commonly this is the browser version number found in a user agent 18 // Most commonly this is the browser version number found in a user agent
21 // string, and is typically a 4-tuple of numbers separated by periods. In 19 // string, and is typically a 4-tuple of numbers separated by periods. In
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 // The name of the field trial, as a 32-bit identifier. 301 // The name of the field trial, as a 32-bit identifier.
304 // Currently, the identifier is a hash of the field trial's name. 302 // Currently, the identifier is a hash of the field trial's name.
305 optional fixed32 name_id = 1; 303 optional fixed32 name_id = 1;
306 304
307 // The user's group within the field trial, as a 32-bit identifier. 305 // 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. 306 // Currently, the identifier is a hash of the group's name.
309 optional fixed32 group_id = 2; 307 optional fixed32 group_id = 2;
310 } 308 }
311 repeated FieldTrial field_trial = 9; 309 repeated FieldTrial field_trial = 9;
312 } 310 }
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