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 import "precache.proto"; | 7 import "precache.proto"; |
8 | 8 |
9 package precache; | 9 package precache; |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 optional uint64 num_manifest_urls = 7; | 47 optional uint64 num_manifest_urls = 7; |
48 | 48 |
49 // The total number of resource URLs that the precache session gathered from | 49 // The total number of resource URLs that the precache session gathered from |
50 // the manifests. | 50 // the manifests. |
51 optional uint64 num_resource_urls = 9; | 51 optional uint64 num_resource_urls = 9; |
52 | 52 |
53 // The internal value of a base::Time object representing the precache | 53 // The internal value of a base::Time object representing the precache |
54 // session start time. The start time is the time just before when top hosts | 54 // session start time. The start time is the time just before when top hosts |
55 // are requested. | 55 // are requested. |
56 optional int64 start_time = 8; | 56 optional int64 start_time = 8; |
| 57 |
| 58 // The minimum resource weight that has been fetched so far. Populated only if |
| 59 // global ranking is enabled. |
| 60 optional double min_weight_fetched = 10; |
57 }; | 61 }; |
OLD | NEW |