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

Unified Diff: net/http/http_response_info.cc

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_info.cc
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
index 5e0229fbd0495f58c994beff737f25d18deff270..99219067a8a90488e82534cd8548feffa92d8fcb 100644
--- a/net/http/http_response_info.cc
+++ b/net/http/http_response_info.cc
@@ -317,13 +317,12 @@ void HttpResponseInfo::Persist(Pickle* pickle,
net::HttpResponseHeaders::PERSIST_RAW;
if (skip_transient_headers) {
- persist_options =
- net::HttpResponseHeaders::PERSIST_SANS_COOKIES |
- net::HttpResponseHeaders::PERSIST_SANS_CHALLENGES |
- net::HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP |
- net::HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE |
- net::HttpResponseHeaders::PERSIST_SANS_RANGES |
- net::HttpResponseHeaders::PERSIST_SANS_SECURITY_STATE;
+ persist_options = net::HttpResponseHeaders::PERSIST_SANS_COOKIES |
+ net::HttpResponseHeaders::PERSIST_SANS_CHALLENGES |
+ net::HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP |
+ net::HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE |
+ net::HttpResponseHeaders::PERSIST_SANS_RANGES |
+ net::HttpResponseHeaders::PERSIST_SANS_SECURITY_STATE;
}
headers->Persist(pickle, persist_options);
@@ -338,8 +337,9 @@ void HttpResponseInfo::Persist(Pickle* pickle,
if (!ssl_info.signed_certificate_timestamps.empty()) {
pickle->WriteInt(ssl_info.signed_certificate_timestamps.size());
for (SignedCertificateTimestampAndStatusList::const_iterator it =
- ssl_info.signed_certificate_timestamps.begin(); it !=
- ssl_info.signed_certificate_timestamps.end(); ++it) {
+ ssl_info.signed_certificate_timestamps.begin();
+ it != ssl_info.signed_certificate_timestamps.end();
+ ++it) {
it->sct->Persist(pickle);
pickle->WriteUInt16(it->status);
}

Powered by Google App Engine
This is Rietveld 408576698