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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js

Issue 1292503002: [Fetch] Unship Request.context (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 5 years, 4 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: LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js b/LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js
index 2256cf7b6ffb08fa6a9459dcb1fcca3131e55dc2..aa185e321a3091a55a4bf14e3122ff702a61bb96 100644
--- a/LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js
+++ b/LayoutTests/http/tests/serviceworker/resources/fetch-request-resources-worker.js
@@ -16,9 +16,6 @@ self.addEventListener('fetch', function(event) {
}
port.postMessage({
url: url,
- context: event.request.context,
- context_clone: event.request.clone().context,
- context_new: (new Request(event.request)).context,
mode: event.request.mode,
redirect: event.request.redirect,
credentials: event.request.credentials

Powered by Google App Engine
This is Rietveld 408576698