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

Unified Diff: net/http/http_request_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_request_headers.h
diff --git a/net/http/http_request_headers.h b/net/http/http_request_headers.h
index 617811741abb8990a45b98119146faad472b9350..7f633fb2f9911eed594bc8fb6ed136c2f38524a4 100644
--- a/net/http/http_request_headers.h
+++ b/net/http/http_request_headers.h
@@ -132,13 +132,9 @@ class NET_EXPORT HttpRequestHeaders {
void MergeFrom(const HttpRequestHeaders& other);
// Copies from |other| to |this|.
- void CopyFrom(const HttpRequestHeaders& other) {
- *this = other;
- }
+ void CopyFrom(const HttpRequestHeaders& other) { *this = other; }
- void Swap(HttpRequestHeaders* other) {
- headers_.swap(other->headers_);
- }
+ void Swap(HttpRequestHeaders* other) { headers_.swap(other->headers_); }
// Serializes HttpRequestHeaders to a string representation. Joins all the
// header keys and values with ": ", and inserts "\r\n" between each header

Powered by Google App Engine
This is Rietveld 408576698