| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/http/http_response_info.h" | 5 #include "net/http/http_response_info.h" |
| 6 |
| 7 #include "net/base/ssl_cert_request_info.h" |
| 6 #include "net/http/http_response_headers.h" | 8 #include "net/http/http_response_headers.h" |
| 7 | 9 |
| 8 namespace net { | 10 namespace net { |
| 9 | 11 |
| 10 HttpResponseInfo::HttpResponseInfo() | 12 HttpResponseInfo::HttpResponseInfo() |
| 11 : was_cached(false) { | 13 : was_cached(false) { |
| 12 } | 14 } |
| 13 | 15 |
| 14 HttpResponseInfo::~HttpResponseInfo() { | 16 HttpResponseInfo::~HttpResponseInfo() { |
| 15 } | 17 } |
| 16 | 18 |
| 17 } // namespace net | 19 } // namespace net |
| OLD | NEW |