| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TOOLS_BALSA_BALSA_HEADERS_H_ | 5 #ifndef NET_TOOLS_BALSA_BALSA_HEADERS_H_ |
| 6 #define NET_TOOLS_BALSA_BALSA_HEADERS_H_ | 6 #define NET_TOOLS_BALSA_BALSA_HEADERS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <algorithm> | 10 #include <algorithm> |
| 9 #include <iosfwd> | 11 #include <iosfwd> |
| 10 #include <iterator> | 12 #include <iterator> |
| 11 #include <string> | 13 #include <string> |
| 12 #include <utility> | 14 #include <utility> |
| 13 #include <vector> | 15 #include <vector> |
| 14 | 16 |
| 15 #include "base/logging.h" | 17 #include "base/logging.h" |
| 16 #include "base/strings/string_piece.h" | 18 #include "base/strings/string_piece.h" |
| 17 #include "net/tools/balsa/balsa_enums.h" | 19 #include "net/tools/balsa/balsa_enums.h" |
| (...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1131 size_t end_of_firstline_idx_; | 1133 size_t end_of_firstline_idx_; |
| 1132 | 1134 |
| 1133 bool transfer_encoding_is_chunked_; | 1135 bool transfer_encoding_is_chunked_; |
| 1134 | 1136 |
| 1135 HeaderLines header_lines_; | 1137 HeaderLines header_lines_; |
| 1136 }; | 1138 }; |
| 1137 | 1139 |
| 1138 } // namespace net | 1140 } // namespace net |
| 1139 | 1141 |
| 1140 #endif // NET_TOOLS_BALSA_BALSA_HEADERS_H_ | 1142 #endif // NET_TOOLS_BALSA_BALSA_HEADERS_H_ |
| OLD | NEW |