| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 package ukm; | 7 package ukm; |
| 8 | 8 |
| 9 option optimize_for = LITE_RUNTIME; | 9 option optimize_for = LITE_RUNTIME; |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 optional string url = 2; | 21 optional string url = 2; |
| 22 | 22 |
| 23 // The origin of the URL. This is reserved to be used by server side only. | 23 // The origin of the URL. This is reserved to be used by server side only. |
| 24 reserved 5; | 24 reserved 5; |
| 25 reserved "url_origin"; | 25 reserved "url_origin"; |
| 26 | 26 |
| 27 // Timestamp of navigation to this Source, as seen by the client. Time of | 27 // Timestamp of navigation to this Source, as seen by the client. Time of |
| 28 // events related to this Source will generally be relative to this timestamp. | 28 // events related to this Source will generally be relative to this timestamp. |
| 29 optional int64 navigation_time_msec = 3; | 29 optional int64 navigation_time_msec = 3; |
| 30 | 30 |
| 31 // Time between navigation and the first contentful paint, in milliseconds. | 31 // Time between navigation and the first contentful paint, in |
| 32 optional int64 first_contentful_paint_msec = 4; | 32 // milliseconds. Deprecated. Use ukm::Entry instead. |
| 33 optional int64 first_contentful_paint_msec = 4 [deprecated = true]; |
| 33 } | 34 } |
| OLD | NEW |