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

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

Issue 2389973004: reflow comments in platform/{network,peerconnection} (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/platform/network/ResourceResponse.cpp
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
index aa43bcb735b150b17e1d4c12b46bfd9720f0ef20..9ffda130f9a6269750adf1986684de86c4f86368 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
@@ -284,7 +284,8 @@ const AtomicString& ResourceResponse::mimeType() const {
void ResourceResponse::setMimeType(const AtomicString& mimeType) {
m_isNull = false;
- // FIXME: MIME type is determined by HTTP Content-Type header. We should update the header, so that it doesn't disagree with m_mimeType.
+ // FIXME: MIME type is determined by HTTP Content-Type header. We should
+ // update the header, so that it doesn't disagree with m_mimeType.
m_mimeType = mimeType;
}
@@ -296,7 +297,9 @@ void ResourceResponse::setExpectedContentLength(
long long expectedContentLength) {
m_isNull = false;
- // FIXME: Content length is determined by HTTP Content-Length header. We should update the header, so that it doesn't disagree with m_expectedContentLength.
+ // FIXME: Content length is determined by HTTP Content-Length header. We
+ // should update the header, so that it doesn't disagree with
+ // m_expectedContentLength.
m_expectedContentLength = expectedContentLength;
}
@@ -307,7 +310,8 @@ const AtomicString& ResourceResponse::textEncodingName() const {
void ResourceResponse::setTextEncodingName(const AtomicString& encodingName) {
m_isNull = false;
- // FIXME: Text encoding is determined by HTTP Content-Type header. We should update the header, so that it doesn't disagree with m_textEncodingName.
+ // FIXME: Text encoding is determined by HTTP Content-Type header. We should
+ // update the header, so that it doesn't disagree with m_textEncodingName.
m_textEncodingName = encodingName;
}
@@ -319,7 +323,8 @@ const String& ResourceResponse::suggestedFilename() const {
void ResourceResponse::setSuggestedFilename(const String& suggestedName) {
m_isNull = false;
- // FIXME: Suggested file name is calculated based on other headers. There should not be a setter for it.
+ // FIXME: Suggested file name is calculated based on other headers. There
+ // should not be a setter for it.
m_suggestedFilename = suggestedName;
}

Powered by Google App Engine
This is Rietveld 408576698