Chromium Code Reviews| Index: services/url_response_disk_cache/url_response_disk_cache_entry.mojom |
| diff --git a/services/url_response_disk_cache/url_response_disk_cache_entry.mojom b/services/url_response_disk_cache/url_response_disk_cache_entry.mojom |
| index 0d12a6e4e3bdfc7a071044ee81e04594cc11a88c..0ffa9fcf710d4720d4611b0c856417c14655b3c1 100644 |
| --- a/services/url_response_disk_cache/url_response_disk_cache_entry.mojom |
| +++ b/services/url_response_disk_cache/url_response_disk_cache_entry.mojom |
| @@ -5,15 +5,17 @@ |
| [DartPackage="mojo_services"] |
| module mojo; |
| -struct CacheHeaders { |
| - string name; |
| - string value; |
| +import "mojo/public/interfaces/network/url_response.mojom"; |
| + |
| +struct LevelDBKey { |
|
ppi
2015/09/08 11:56:24
This key type can make sense regardless of the par
ppi
2015/09/08 11:56:24
Please indicate in a comment that these mojom stru
qsr
2015/09/08 13:35:22
Done.
qsr
2015/09/08 13:35:22
Done.
|
| + string request_origin; |
| + string url; |
| + int64 timestamp; |
| }; |
| // One entry in the service cache. |
| struct CacheEntry { |
| - uint32 version = 0; |
| - string url; |
| + URLResponse response; |
| + string cache_directory; |
| string content_path; |
| - array<CacheHeaders>? headers; |
| }; |