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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchManager.cpp

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (Closed)
Patch Set: rebase Created 4 years, 2 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/modules/fetch/FetchManager.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
index 4a5defeab82b3f56777c8c3dbee95e4c19a8611e..d9f61e91161332fc11c30ab1e5b31a3bca1c1651 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
@@ -699,7 +699,8 @@ void FetchManager::Loader::performHTTPFetch(bool corsFlag,
SchemeRegistry::shouldTreatURLSchemeAsSupportingFetchAPI(
m_request->url().protocol()) ||
(m_request->url().protocolIs("blob") && !corsFlag && !corsPreflightFlag));
- // CORS preflight fetch procedure is implemented inside DocumentThreadableLoader.
+ // CORS preflight fetch procedure is implemented inside
+ // DocumentThreadableLoader.
// "1. Let |HTTPRequest| be a copy of |request|, except that |HTTPRequest|'s
// body is a tee of |request|'s body."
@@ -832,7 +833,8 @@ void FetchManager::Loader::performDataFetch() {
request.setUseStreamOnResponse(true);
request.setHTTPMethod(m_request->method());
request.setFetchRedirectMode(WebURLRequest::FetchRedirectModeError);
- // We intentionally skip 'setExternalRequestStateFromRequestorAddressSpace', as 'data:' can never be external.
+ // We intentionally skip 'setExternalRequestStateFromRequestorAddressSpace',
+ // as 'data:' can never be external.
ResourceLoaderOptions resourceLoaderOptions;
resourceLoaderOptions.dataBufferingPolicy = DoNotBufferData;

Powered by Google App Engine
This is Rietveld 408576698