Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4150)

Unified Diff: services/url_response_disk_cache/url_response_disk_cache_entry.mojom

Issue 1157783002: Update to newer network service implementation and mojoms from monet (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698