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

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

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (Closed)
Patch Set: 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 9232798c8b3d0f768d713b3f6961d2174c1a7a17..73647c2a60815f071efc0363728803ebd1d5c10f 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
@@ -701,7 +701,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."
@@ -834,7 +835,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