Chromium Code Reviews| 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 // Source contains data related to a top-level navigation. | |
| 12 // Next tag: 5 | |
| 13 message Source { | |
| 14 // A identifier for the source. This should be unique even across sessions. | |
| 15 optional int32 id = 1; | |
| 16 | |
| 17 // The url of the source, as recorded in history. If this URL does not | |
| 18 // appear in FirstTimes, it should be stripped before recording to logs. | |
|
battre
2017/01/12 08:12:55
If the URL has not been discovered by Google's cra
Steven Holte
2017/01/13 23:15:26
Done.
| |
| 19 optional string url = 2; | |
| 20 | |
| 21 // Timestamp of navigation to this Source, as seen by the client. Time of | |
| 22 // events related to this Source will generally be relative to this timestamp. | |
| 23 optional int64 navigation_time_msec = 3; | |
| 24 | |
| 25 // Time between navigation and the first meaningful paint, in milliseconds. | |
| 26 optional int64 first_meaningful_paint_msec = 4; | |
| 27 } | |
| OLD | NEW |