| Index: net/http/http_cache.cc
|
| ===================================================================
|
| --- net/http/http_cache.cc (revision 2439)
|
| +++ net/http/http_cache.cc (working copy)
|
| @@ -1034,6 +1034,7 @@
|
| response_info->headers = new HttpResponseHeaders(pickle, &iter);
|
| DCHECK(response_info->headers->response_code() != -1);
|
|
|
| +#if defined(OS_WIN)
|
| // read ssl-info
|
| if (flags & RESPONSE_INFO_HAS_CERT) {
|
| response_info->ssl_info.cert =
|
| @@ -1051,6 +1052,10 @@
|
| return false;
|
| response_info->ssl_info.security_bits = security_bits;
|
| }
|
| +#else
|
| + // TODO(port): Just enable above when SSL stuff is ported.
|
| + NOTIMPLEMENTED();
|
| +#endif
|
|
|
| // read vary-data
|
| if (flags & RESPONSE_INFO_HAS_VARY_DATA) {
|
| @@ -1082,12 +1087,17 @@
|
|
|
| response_info->headers->Persist(&pickle, skip_transient_headers);
|
|
|
| +#if defined(OS_WIN)
|
| if (response_info->ssl_info.cert) {
|
| response_info->ssl_info.cert->Persist(&pickle);
|
| pickle.WriteInt(response_info->ssl_info.cert_status);
|
| }
|
| if (response_info->ssl_info.security_bits != -1)
|
| pickle.WriteInt(response_info->ssl_info.security_bits);
|
| +#else
|
| + // TODO(port): Just enable above when SSL stuff is ported.
|
| + NOTIMPLEMENTED();
|
| +#endif
|
|
|
| if (response_info->vary_data.is_valid())
|
| response_info->vary_data.Persist(&pickle);
|
|
|