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

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

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.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.h b/third_party/WebKit/Source/platform/network/ResourceResponse.h
index 4959ee39cce0194bf5c80c35fadbe929bebf731d..f2e59acca07cfd62e99c2159f0b5708ffac51ccc 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -105,7 +105,8 @@ class PLATFORM_EXPORT ResourceResponse final {
// All strings are human-readable values.
String protocol;
String keyExchange;
- // keyExchangeGroup is the empty string if not applicable for the connection's key exchange.
+ // keyExchangeGroup is the empty string if not applicable for the
+ // connection's key exchange.
String keyExchangeGroup;
String cipher;
// mac is the empty string when the connection cipher suite does not
@@ -156,7 +157,9 @@ class PLATFORM_EXPORT ResourceResponse final {
void setTextEncodingName(const AtomicString&);
// FIXME: Should compute this on the fly.
- // There should not be a setter exposed, as suggested file name is determined based on other headers in a manner that WebCore does not necessarily know about.
+ // There should not be a setter exposed, as suggested file name is determined
+ // based on other headers in a manner that WebCore does not necessarily know
+ // about.
const String& suggestedFilename() const;
void setSuggestedFilename(const String&);
@@ -176,7 +179,8 @@ class PLATFORM_EXPORT ResourceResponse final {
bool isAttachment() const;
- // FIXME: These are used by PluginStream on some platforms. Calculations may differ from just returning plain Last-Modified header.
+ // FIXME: These are used by PluginStream on some platforms. Calculations may
+ // differ from just returning plain Last-Modified header.
// Leaving it for now but this should go away in favor of generic solution.
void setLastModifiedDate(time_t);
time_t lastModifiedDate() const;
@@ -407,10 +411,12 @@ class PLATFORM_EXPORT ResourceResponse final {
// Was the resource fetched over SPDY. See http://dev.chromium.org/spdy
bool m_wasFetchedViaSPDY;
- // Was the resource fetched over a channel which used TLS/Next-Protocol-Negotiation (also SPDY related).
+ // Was the resource fetched over a channel which used
+ // TLS/Next-Protocol-Negotiation (also SPDY related).
bool m_wasNpnNegotiated;
- // Was the resource fetched over a channel which specified "Alternate-Protocol"
+ // Was the resource fetched over a channel which specified
+ // "Alternate-Protocol"
// (e.g.: Alternate-Protocol: 443:npn-spdy/1).
bool m_wasAlternateProtocolAvailable;

Powered by Google App Engine
This is Rietveld 408576698