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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp

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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
index 85e95e73fb12dc8d434784ae587a12989914908a..c22a03f7898d91c238434173395eb57057fc88cf 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
@@ -354,6 +354,14 @@ void WebURLRequest::SetFetchRedirectMode(
return resource_request_->SetFetchRedirectMode(redirect);
}
+WebString WebURLRequest::GetFetchIntegrity() const {
+ return resource_request_->GetFetchIntegrity();
+}
+
+void WebURLRequest::SetFetchIntegrity(const WebString& integrity) {
+ return resource_request_->SetFetchIntegrity(integrity);
+}
+
WebURLRequest::PreviewsState WebURLRequest::GetPreviewsState() const {
return resource_request_->GetPreviewsState();
}

Powered by Google App Engine
This is Rietveld 408576698