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

Side by Side Diff: chrome/common/metrics/proto/chrome_user_metrics_extension.proto

Issue 9232071: Upload UMA data using protocol buffers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 10 months 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 // Protocol buffer for Chrome UMA (User Metrics Analysis). 5 // Protocol buffer for Chrome UMA (User Metrics Analysis).
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
11 package metrics; 11 package metrics;
12 12
13 import "histogram_event.proto"; 13 import "histogram_event.proto";
14 import "omnibox_event.proto"; 14 import "omnibox_event.proto";
15 import "system_profile.proto"; 15 import "system_profile.proto";
16 import "user_action_event.proto"; 16 import "user_action_event.proto";
17 17
18 // Next tag: 7 18 // Next tag: 7
19 message ChromeUserMetricsExtension { 19 message ChromeUserMetricsExtension {
20 // The id of the browser installation that generated these events. 20 // The id of the browser installation that generated these events.
21 // Technically, this id is unique to a top-level (one level above the 21 // Technically, this id is unique to a top-level (one level above the
22 // "Default" directory) Chrome user data directory [1], and so is shared among 22 // "Default" directory) Chrome user data directory [1], and so is shared among
23 // all Chrome user profiles contained in this user data directory. 23 // all Chrome user profiles contained in this user data directory.
24 // A UserID of 0 is reserved for test data (monitoring and internal testing) 24 // An id of 0 is reserved for test data (monitoring and internal testing) and
25 // and should normally be ignored in analysis of the data. 25 // should normally be ignored in analysis of the data.
26 // [1] http://www.chromium.org/user-experience/user-data-directory 26 // [1] http://www.chromium.org/user-experience/user-data-directory
27 optional fixed64 user_id = 1; 27 optional fixed64 client_id = 1;
28 28
29 // The session id for this user. 29 // The session id for this user.
30 // Values such as tab ids are only meaningful within a particular session. 30 // Values such as tab ids are only meaningful within a particular session.
31 // The client keeps track of the session id and sends it with each event. 31 // The client keeps track of the session id and sends it with each event.
32 // The session id is simply an integer that is incremented each time the user 32 // The session id is simply an integer that is incremented each time the user
33 // relaunches Chrome. 33 // relaunches Chrome.
34 optional int32 session_id = 2; 34 optional int32 session_id = 2;
35 35
36 // Information about the user's browser and system configuration. 36 // Information about the user's browser and system configuration.
37 optional SystemProfileProto system_profile = 3; 37 optional SystemProfileProto system_profile = 3;
38 38
39 // This message will log one or more of the following event types: 39 // This message will log one or more of the following event types:
40 repeated UserActionEventProto user_action_event = 4; 40 repeated UserActionEventProto user_action_event = 4;
41 repeated OmniboxEventProto omnibox_event = 5; 41 repeated OmniboxEventProto omnibox_event = 5;
42 repeated HistogramEventProto histogram_event = 6; 42 repeated HistogramEventProto histogram_event = 6;
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698