| 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 |
| 11 // Chrome requires this. | 11 // Chrome requires this. |
| 12 option optimize_for = LITE_RUNTIME; | 12 option optimize_for = LITE_RUNTIME; |
| 13 | 13 |
| 14 message TopHost { | 14 message TopHost { |
| 15 // The host name of a top host. | 15 // The host name of a top host. |
| 16 optional string hostname = 1; | 16 optional string hostname = 1; |
| 17 }; | 17 }; |
| 18 | 18 |
| 19 message PrecacheManifestURL { | 19 message DeprecatedPrecacheManifestURL { |
| 20 // The URL that provides a manifest. | 20 // The URL that provides a manifest. |
| 21 optional string url = 1; | 21 optional string url = 1; |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 // Information about the precache work that needs to be completed. | 24 // Information about the precache work that needs to be completed. |
| 25 message PrecacheUnfinishedWork { | 25 message PrecacheUnfinishedWork { |
| 26 // Top hosts for which to fetch manifests. | 26 // Top hosts for which to fetch manifests. |
| 27 repeated TopHost top_host = 1; | 27 repeated TopHost top_host = 1; |
| 28 | 28 |
| 29 optional PrecacheConfigurationSettings config_settings = 2; | 29 optional PrecacheConfigurationSettings config_settings = 2; |
| 30 | 30 |
| 31 // Manifest URLs remaining to be fetched. | 31 // DEPRECATED: Manifest URLs remaining to be fetched. |
| 32 repeated PrecacheManifestURL manifest = 3; | 32 repeated DeprecatedPrecacheManifestURL deprecated_manifest = 3 |
| 33 [deprecated = true]; |
| 33 | 34 |
| 34 // Resource URLs remaining to be fetched. | 35 // Resource URLs remaining to be fetched. |
| 35 repeated PrecacheResource resource = 4; | 36 repeated PrecacheResource resource = 4; |
| 36 | 37 |
| 37 // Tally of the total number of bytes contained in URL fetches, including | 38 // Tally of the total number of bytes contained in URL fetches, including |
| 38 // config, manifests, and resources. This the number of bytes as they would be | 39 // config, manifests, and resources. This the number of bytes as they would be |
| 39 // compressed over the network. | 40 // compressed over the network. |
| 40 optional uint64 total_bytes = 5; | 41 optional uint64 total_bytes = 5; |
| 41 | 42 |
| 42 // Tally of the total number of bytes received over the network from URL | 43 // Tally of the total number of bytes received over the network from URL |
| 43 // fetches (the same ones as in total_response_bytes_). This includes response | 44 // fetches (the same ones as in total_response_bytes_). This includes response |
| 44 // headers and intermediate responses such as 30xs. | 45 // headers and intermediate responses such as 30xs. |
| 45 optional uint64 network_bytes = 6; | 46 optional uint64 network_bytes = 6; |
| 46 | 47 |
| 47 // The total number of manifest URLs that the precache session started with. | 48 // The total number of manifest URLs that the precache session started with. |
| 48 optional uint64 num_manifest_urls = 7; | 49 optional uint64 num_manifest_urls = 7; |
| 49 | 50 |
| 50 // The internal value of a base::Time object representing the precache | 51 // The internal value of a base::Time object representing the precache |
| 51 // session start time. The start time is the time just before when top hosts | 52 // session start time. The start time is the time just before when top hosts |
| 52 // are requested. | 53 // are requested. |
| 53 optional int64 start_time = 8; | 54 optional int64 start_time = 8; |
| 54 }; | 55 }; |
| OLD | NEW |