OLD | NEW |
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 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 optional SystemProfileProto system_profile = 3; | 49 optional SystemProfileProto system_profile = 3; |
50 | 50 |
51 // This message will log one or more of the following event types: | 51 // This message will log one or more of the following event types: |
52 repeated UserActionEventProto user_action_event = 4; | 52 repeated UserActionEventProto user_action_event = 4; |
53 repeated OmniboxEventProto omnibox_event = 5; | 53 repeated OmniboxEventProto omnibox_event = 5; |
54 repeated HistogramEventProto histogram_event = 6; | 54 repeated HistogramEventProto histogram_event = 6; |
55 repeated ProfilerEventProto profiler_event = 7; | 55 repeated ProfilerEventProto profiler_event = 7; |
56 | 56 |
57 repeated PerfDataProto perf_data = 8; | 57 repeated PerfDataProto perf_data = 8; |
58 } | 58 } |
OLD | NEW |