OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 syntax = "proto2"; |
| 6 |
| 7 package ukm; |
| 8 |
| 9 option optimize_for = LITE_RUNTIME; |
| 10 |
| 11 import "ukm/source.proto"; |
| 12 import "system_profile.proto"; |
| 13 |
| 14 // This is the message type sent from Chrome to the UKM collector. |
| 15 // Next tag: 4 |
| 16 message Report { |
| 17 // A unique identifier for a Chrome install. This ID should be used only |
| 18 // in UKM reports, and not linked to any other data sources. |
| 19 optional fixed64 client_id = 1; |
| 20 |
| 21 // Information about the user's browser and system configuration. |
| 22 optional metrics.SystemProfileProto system_profile = 2; |
| 23 |
| 24 // A list of the top-level navigations that data was collected for. |
| 25 repeated Source sources = 3; |
| 26 } |
OLD | NEW |