| 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; | |
| 10 | |
| 11 package metrics; | 9 package metrics; |
| 12 | 10 |
| 13 import "histogram_event.proto"; | 11 import "histogram_event.proto"; |
| 14 import "omnibox_event.proto"; | 12 import "omnibox_event.proto"; |
| 15 import "profiler_event.proto"; | 13 import "profiler_event.proto"; |
| 16 import "system_profile.proto"; | 14 import "system_profile.proto"; |
| 17 import "user_action_event.proto"; | 15 import "user_action_event.proto"; |
| 18 | 16 |
| 19 // Next tag: 8 | 17 // Next tag: 8 |
| 20 message ChromeUserMetricsExtension { | 18 message ChromeUserMetricsExtension { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 | 34 |
| 37 // Information about the user's browser and system configuration. | 35 // Information about the user's browser and system configuration. |
| 38 optional SystemProfileProto system_profile = 3; | 36 optional SystemProfileProto system_profile = 3; |
| 39 | 37 |
| 40 // This message will log one or more of the following event types: | 38 // This message will log one or more of the following event types: |
| 41 repeated UserActionEventProto user_action_event = 4; | 39 repeated UserActionEventProto user_action_event = 4; |
| 42 repeated OmniboxEventProto omnibox_event = 5; | 40 repeated OmniboxEventProto omnibox_event = 5; |
| 43 repeated HistogramEventProto histogram_event = 6; | 41 repeated HistogramEventProto histogram_event = 6; |
| 44 repeated ProfilerEventProto profiler_event = 7; | 42 repeated ProfilerEventProto profiler_event = 7; |
| 45 } | 43 } |
| OLD | NEW |