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..bdf5faa135e3bed2d697e83e1fb5623f7cb06122 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 |
| @@ -2,18 +2,21 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -[DartPackage="mojo_services"] |
| +// These mojom structs are declared only to get generated serialization code |
| +// (ie. they are not used for ipc). |
| module mojo; |
| -struct CacheHeaders { |
| - string name; |
| - string value; |
| +import "mojo/public/interfaces/network/url_response.mojom"; |
| + |
| +struct InternalEntryKey { |
|
ppi
2015/09/08 15:46:26
Since we expose this in the iterator interface, mi
qsr
2015/09/11 15:47:58
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; |
| }; |