| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_HTTP_HTTP_RESPONSE_HEADERS_H_ | 5 #ifndef NET_HTTP_HTTP_RESPONSE_HEADERS_H_ |
| 6 #define NET_HTTP_HTTP_RESPONSE_HEADERS_H_ | 6 #define NET_HTTP_HTTP_RESPONSE_HEADERS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/string_piece.h" | 14 #include "base/strings/string_piece.h" |
| 15 #include "net/base/net_export.h" | 15 #include "net/base/net_export.h" |
| 16 #include "net/base/net_log.h" | 16 #include "net/base/net_log.h" |
| 17 #include "net/http/http_version.h" | 17 #include "net/http/http_version.h" |
| 18 | 18 |
| 19 class Pickle; | 19 class Pickle; |
| 20 class PickleIterator; | 20 class PickleIterator; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class Time; | 23 class Time; |
| 24 class TimeDelta; | 24 class TimeDelta; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 | 368 |
| 369 // The parsed http version number (not normalized). | 369 // The parsed http version number (not normalized). |
| 370 HttpVersion parsed_http_version_; | 370 HttpVersion parsed_http_version_; |
| 371 | 371 |
| 372 DISALLOW_COPY_AND_ASSIGN(HttpResponseHeaders); | 372 DISALLOW_COPY_AND_ASSIGN(HttpResponseHeaders); |
| 373 }; | 373 }; |
| 374 | 374 |
| 375 } // namespace net | 375 } // namespace net |
| 376 | 376 |
| 377 #endif // NET_HTTP_HTTP_RESPONSE_HEADERS_H_ | 377 #endif // NET_HTTP_HTTP_RESPONSE_HEADERS_H_ |
| OLD | NEW |