| 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);
|
| }
|
|
|