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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceRequest.cpp

Issue 2105503002: Skip foreign fetch when the skipServiceWorker flag is set on a request. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rephrase SkipServiceWorker comments. Created 4 years, 6 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/network/ResourceRequest.cpp
diff --git a/third_party/WebKit/Source/platform/network/ResourceRequest.cpp b/third_party/WebKit/Source/platform/network/ResourceRequest.cpp
index e9f196009b11b1a753f51eb4eb3c672334426ac7..c05ad61869bafa944c2bbae7b8b150d9e23529b1 100644
--- a/third_party/WebKit/Source/platform/network/ResourceRequest.cpp
+++ b/third_party/WebKit/Source/platform/network/ResourceRequest.cpp
@@ -409,7 +409,7 @@ void ResourceRequest::initialize(const KURL& url)
m_hasUserGesture = false;
m_downloadToFile = false;
m_useStreamOnResponse = false;
- m_skipServiceWorker = false;
+ m_skipServiceWorker = WebURLRequest::SkipServiceWorker::None;
m_shouldResetAppCache = false;
m_priority = ResourceLoadPriorityLowest;
m_intraPriorityValue = 0;

Powered by Google App Engine
This is Rietveld 408576698