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 #include "net/http/http_response_headers.h" | 6 #include "net/http/http_response_headers.h" |
7 | 7 |
8 namespace net { | 8 namespace net { |
9 | 9 |
10 HttpResponseInfo::HttpResponseInfo() | 10 HttpResponseInfo::HttpResponseInfo() |
11 : was_cached(false), response_data_file(base::kInvalidPlatformFileValue) { | 11 : was_cached(false) { |
12 } | 12 } |
13 | 13 |
14 HttpResponseInfo::~HttpResponseInfo() { | 14 HttpResponseInfo::~HttpResponseInfo() { |
15 } | 15 } |
16 | 16 |
17 } // namespace net | 17 } // namespace net |
OLD | NEW |