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 buffers used for storing in SQLite. | 5 // Protocol buffers used for storing in SQLite. |
6 | 6 |
7 syntax = "proto2"; | 7 syntax = "proto2"; |
8 | 8 |
9 package chrome_browser_predictors; | 9 package chrome_browser_predictors; |
10 | 10 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 optional string primary_key = 1; | 52 optional string primary_key = 1; |
53 optional string resource_url = 2; | 53 optional string resource_url = 2; |
54 optional ResourceType resource_type = 3; | 54 optional ResourceType resource_type = 3; |
55 optional uint32 number_of_hits = 4; | 55 optional uint32 number_of_hits = 4; |
56 optional uint32 number_of_misses = 5; | 56 optional uint32 number_of_misses = 5; |
57 optional uint32 consecutive_misses = 6; | 57 optional uint32 consecutive_misses = 6; |
58 optional double average_position = 7; | 58 optional double average_position = 7; |
59 optional Priority priority = 8; | 59 optional Priority priority = 8; |
60 optional bool has_validators = 9; | 60 optional bool has_validators = 9; |
61 optional bool always_revalidate = 10; | 61 optional bool always_revalidate = 10; |
| 62 optional int32 score = 11; |
62 } | 63 } |
OLD | NEW |