OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file contains the definition of protocol buffers for native browser | 5 // This file contains the definition of protocol buffers for native browser |
6 // fingerprinting. | 6 // fingerprinting. |
7 | 7 |
8 syntax = "proto2"; | 8 syntax = "proto2"; |
9 | 9 |
10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 209 |
210 optional Performance performance = 2; | 210 optional Performance performance = 2; |
211 | 211 |
212 optional UserCharacteristics user_characteristics = 3; | 212 optional UserCharacteristics user_characteristics = 3; |
213 | 213 |
214 optional TransientState transient_state = 4; | 214 optional TransientState transient_state = 4; |
215 | 215 |
216 // Metadata associated with data collection. | 216 // Metadata associated with data collection. |
217 optional Metadata metadata = 5; | 217 optional Metadata metadata = 5; |
218 } | 218 } |
OLD | NEW |