OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 // Information about the user's browser and system configuration. | 54 // Information about the user's browser and system configuration. |
55 optional SystemProfileProto system_profile = 3; | 55 optional SystemProfileProto system_profile = 3; |
56 | 56 |
57 // This message will log one or more of the following event types: | 57 // This message will log one or more of the following event types: |
58 repeated UserActionEventProto user_action_event = 4; | 58 repeated UserActionEventProto user_action_event = 4; |
59 repeated OmniboxEventProto omnibox_event = 5; | 59 repeated OmniboxEventProto omnibox_event = 5; |
60 repeated HistogramEventProto histogram_event = 6; | 60 repeated HistogramEventProto histogram_event = 6; |
61 repeated ProfilerEventProto profiler_event = 7; | 61 repeated ProfilerEventProto profiler_event = 7; |
62 | 62 |
63 // TODO(sque): Deprecate this field and use |sampled_profile| instead. | 63 // This field is no longer used. Use |sampled_profile| instead. |
64 repeated PerfDataProto perf_data = 8; | 64 repeated PerfDataProto perf_data = 8 [deprecated=true]; |
65 | 65 |
66 // A list of all collected sample-based profiles since the last UMA upload. | 66 // A list of all collected sample-based profiles since the last UMA upload. |
67 repeated SampledProfile sampled_profile = 11; | 67 repeated SampledProfile sampled_profile = 11; |
68 | 68 |
69 // Additional data related with Cast-enabled devices. | 69 // Additional data related with Cast-enabled devices. |
70 optional CastLogsProto cast_logs = 12; | 70 optional CastLogsProto cast_logs = 12; |
71 } | 71 } |
OLD | NEW |