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

Side by Side Diff: third_party/WebKit/public/platform/modules/fetch/fetch_api_request.mojom

Issue 2941883003: [ServiceWorker] Fetch event should return integrity value (Closed)
Patch Set: Address yhirano's comment #78 Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module blink.mojom; 5 module blink.mojom;
6 6
7 import "third_party/WebKit/public/platform/referrer.mojom"; 7 import "third_party/WebKit/public/platform/referrer.mojom";
8 import "url/mojo/url.mojom"; 8 import "url/mojo/url.mojom";
9 9
10 // The mode associated with a request. 10 // The mode associated with a request.
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 RequestContextType request_context_type; 92 RequestContextType request_context_type;
93 RequestContextFrameType frame_type; 93 RequestContextFrameType frame_type;
94 url.mojom.Url url; 94 url.mojom.Url url;
95 string method; 95 string method;
96 map<string, string> headers; 96 map<string, string> headers;
97 string? blob_uuid; 97 string? blob_uuid;
98 uint64 blob_size; 98 uint64 blob_size;
99 Referrer referrer; 99 Referrer referrer;
100 FetchCredentialsMode credentials_mode; 100 FetchCredentialsMode credentials_mode;
101 FetchRedirectMode redirect_mode; 101 FetchRedirectMode redirect_mode;
102 string? integrity;
102 string? client_id; 103 string? client_id;
103 bool is_reload; 104 bool is_reload;
104 ServiceWorkerFetchType fetch_type; 105 ServiceWorkerFetchType fetch_type;
105 }; 106 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698