| 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 // Protocol buffer for permission reports sent to the Safe Browsing client-side | 5 // Protocol buffer for permission reports sent to the Safe Browsing client-side |
| 6 // detection (CSD) frontends. This should stay in sync with the Safe Browsing | 6 // detection (CSD) frontends. This should stay in sync with the Safe Browsing |
| 7 // server-side protocol buffer. | 7 // server-side protocol buffer. |
| 8 | 8 |
| 9 syntax = "proto2"; | 9 syntax = "proto2"; |
| 10 | 10 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 message FieldTrial { | 112 message FieldTrial { |
| 113 // The name of the field trial, as a 32-bit identifier. Currently, the | 113 // The name of the field trial, as a 32-bit identifier. Currently, the |
| 114 // identifier is a hash of the field trial's name. | 114 // identifier is a hash of the field trial's name. |
| 115 optional fixed32 name_id = 1; | 115 optional fixed32 name_id = 1; |
| 116 | 116 |
| 117 // The user's group within the field trial, as a 32-bit identifier. | 117 // The user's group within the field trial, as a 32-bit identifier. |
| 118 // Currently, the identifier is a hash of the group's name. | 118 // Currently, the identifier is a hash of the group's name. |
| 119 optional fixed32 group_id = 2; | 119 optional fixed32 group_id = 2; |
| 120 } | 120 } |
| 121 } | 121 } |
| OLD | NEW |