| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 optional Duration experimental_time_to_first_meaningful_paint = 15; | 94 optional Duration experimental_time_to_first_meaningful_paint = 15; |
| 95 | 95 |
| 96 // The unique identifier for the page load. | 96 // The unique identifier for the page load. |
| 97 optional uint64 page_id = 16; | 97 optional uint64 page_id = 16; |
| 98 | 98 |
| 99 // The opt out state of the page load. | 99 // The opt out state of the page load. |
| 100 optional PreviewsOptOut previews_opt_out = 17; | 100 optional PreviewsOptOut previews_opt_out = 17; |
| 101 | 101 |
| 102 // The previews type that was used on the page. | 102 // The previews type that was used on the page. |
| 103 optional PreviewsType previews_type = 18; | 103 optional PreviewsType previews_type = 18; |
| 104 |
| 105 // Whether the user is included in the data reduction proxy holdback |
| 106 // experiment. |
| 107 optional bool holdback = 19; |
| 104 } | 108 } |
| OLD | NEW |