| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 import "client_config.proto"; | 9 import "client_config.proto"; |
| 10 | 10 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 // The amount of time the parser was blocked by loading script. | 66 // The amount of time the parser was blocked by loading script. |
| 67 optional Duration parse_blocked_on_script_load_duration = 13; | 67 optional Duration parse_blocked_on_script_load_duration = 13; |
| 68 | 68 |
| 69 // Time until parsing finished. | 69 // Time until parsing finished. |
| 70 optional Duration parse_stop = 14; | 70 optional Duration parse_stop = 14; |
| 71 | 71 |
| 72 // Time to first meaningful paint. This measure is unstable and will change | 72 // Time to first meaningful paint. This measure is unstable and will change |
| 73 // over time. | 73 // over time. |
| 74 optional Duration experimental_time_to_first_meaningful_paint = 15; | 74 optional Duration experimental_time_to_first_meaningful_paint = 15; |
| 75 |
| 76 // The unique identifier for the page load. |
| 77 optional uint64 page_id = 16; |
| 75 } | 78 } |
| OLD | NEW |