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

Unified Diff: net/http/http_response_headers.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: net/http/http_response_headers.h
diff --git a/net/http/http_response_headers.h b/net/http/http_response_headers.h
index 2bf4514bdc904b0397cca538ee8fc9893eede311..94daf42471023b835da3e385db48beb11c283e1e 100644
--- a/net/http/http_response_headers.h
+++ b/net/http/http_response_headers.h
@@ -39,7 +39,7 @@ class NET_EXPORT HttpResponseHeaders
// Persist options.
typedef int PersistOptions;
static const PersistOptions PERSIST_RAW = -1; // Raw, unparsed headers.
- static const PersistOptions PERSIST_ALL = 0; // Parsed headers.
+ static const PersistOptions PERSIST_ALL = 0; // Parsed headers.
static const PersistOptions PERSIST_SANS_COOKIES = 1 << 0;
static const PersistOptions PERSIST_SANS_CHALLENGES = 1 << 1;
static const PersistOptions PERSIST_SANS_HOP_BY_HOP = 1 << 2;
@@ -140,14 +140,10 @@ class NET_EXPORT HttpResponseHeaders
std::string GetStatusLine() const;
// Get the HTTP version of the normalized status line.
- HttpVersion GetHttpVersion() const {
- return http_version_;
- }
+ HttpVersion GetHttpVersion() const { return http_version_; }
// Get the HTTP version determined while parsing; or (0,0) if parsing failed
- HttpVersion GetParsedHttpVersion() const {
- return parsed_http_version_;
- }
+ HttpVersion GetParsedHttpVersion() const { return parsed_http_version_; }
// Get the HTTP status text of the normalized status line.
std::string GetStatusText() const;
@@ -267,7 +263,7 @@ class NET_EXPORT HttpResponseHeaders
// Returns true if the response is chunk-encoded.
bool IsChunkEncoded() const;
-#if defined (SPDY_PROXY_AUTH_ORIGIN)
+#if defined(SPDY_PROXY_AUTH_ORIGIN)
// Contains instructions contained in the Chrome-Proxy header.
struct DataReductionProxyInfo {
DataReductionProxyInfo() : bypass_all(false) {}
@@ -292,8 +288,8 @@ class NET_EXPORT HttpResponseHeaders
// populates |proxy_info| with information on how long to bypass if
// applicable.
ProxyService::DataReductionProxyBypassEventType
- GetDataReductionProxyBypassEventType(
- DataReductionProxyInfo* proxy_info) const;
+ GetDataReductionProxyBypassEventType(
+ DataReductionProxyInfo* proxy_info) const;
// Returns true if response headers contain the data reduction proxy Via
// header value.

Powered by Google App Engine
This is Rietveld 408576698