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

Unified Diff: third_party/WebKit/Source/modules/fetch/Request.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/Request.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/Request.cpp b/third_party/WebKit/Source/modules/fetch/Request.cpp
index 47836ba64f607543f6e57a97e0340dd1143493c3..2d1c4749a42597c05b247b6a1d6b107be67ec04a 100644
--- a/third_party/WebKit/Source/modules/fetch/Request.cpp
+++ b/third_party/WebKit/Source/modules/fetch/Request.cpp
@@ -354,8 +354,8 @@ Request* Request::createRequestWithRequestOrString(
}
}
- // TODO(mkwst): See the comment in RequestInit about serializing the attached credential
- // prior to hitting the Service Worker machinery.
+ // TODO(mkwst): See the comment in RequestInit about serializing the attached
+ // credential prior to hitting the Service Worker machinery.
if (request->credentials() == WebURLRequest::FetchCredentialsModePassword) {
r->getHeaders()->append(HTTPNames::Content_Type, init.contentType,
exceptionState);
@@ -496,7 +496,8 @@ String Request::method() const {
}
KURL Request::url() const {
- // The url attribute's getter must return request's url, serialized with the exclude fragment flag set.
+ // The url attribute's getter must return request's url, serialized with the
+ // exclude fragment flag set.
if (!m_request->url().hasFragmentIdentifier())
return m_request->url();
KURL url(m_request->url());
@@ -710,8 +711,9 @@ void Request::populateWebServiceWorkerRequest(
webRequest.setReferrer(
m_request->referrerString(),
static_cast<WebReferrerPolicy>(m_request->getReferrerPolicy()));
- // FIXME: How can we set isReload properly? What is the correct place to load it in to the Request object? We should investigate the right way
- // to plumb this information in to here.
+ // FIXME: How can we set isReload properly? What is the correct place to load
+ // it in to the Request object? We should investigate the right way to plumb
+ // this information in to here.
}
String Request::mimeType() const {
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/FetchResponseData.h ('k') | third_party/WebKit/Source/modules/fetch/RequestInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698