| 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 379dce0939731ce1c0ecfb44c07d1af1310b6f3e..2d41947f8b278a6429b9014bac9fb245fbeec435 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
|
| @@ -4,10 +4,15 @@
|
|
|
| module mojo;
|
|
|
| +struct CacheHeaders {
|
| + string name;
|
| + string value;
|
| +};
|
| +
|
| // One entry in the service cache.
|
| struct CacheEntry {
|
| uint32 version = 0;
|
| string url;
|
| string content_path;
|
| - array<string>? headers;
|
| + array<CacheHeaders>? headers;
|
| };
|
|
|