OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package content; | 9 package content; |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 required ResponseType response_type = 3; | 42 required ResponseType response_type = 3; |
43 repeated CacheHeaderMap headers = 4; | 43 repeated CacheHeaderMap headers = 4; |
44 optional string url = 5; | 44 optional string url = 5; |
45 optional int64 response_time = 6; | 45 optional int64 response_time = 6; |
46 repeated string cors_exposed_header_names = 7; | 46 repeated string cors_exposed_header_names = 7; |
47 } | 47 } |
48 | 48 |
49 message CacheMetadata { | 49 message CacheMetadata { |
50 required CacheRequest request = 1; | 50 required CacheRequest request = 1; |
51 required CacheResponse response = 2; | 51 required CacheResponse response = 2; |
| 52 optional int64 entry_time = 3; |
52 } | 53 } |
OLD | NEW |