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 { |
| + 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; |
|
ppi
2015/09/08 13:45:45
Should this be called "client directory"?
qsr
2015/09/08 13:53:40
Not sure I agree. This directory is not in the con
|
| string content_path; |
| - array<CacheHeaders>? headers; |
| }; |