| 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_FRAME_H_ | 5 #ifndef NET_TOOLS_BALSA_BALSA_FRAME_H_ |
| 6 #define NET_TOOLS_BALSA_BALSA_FRAME_H_ | 6 #define NET_TOOLS_BALSA_BALSA_FRAME_H_ |
| 7 | 7 |
| 8 #include <strings.h> | |
| 9 | |
| 10 #include <utility> | 8 #include <utility> |
| 11 #include <vector> | 9 #include <vector> |
| 12 | 10 |
| 13 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 14 #include "base/port.h" | 12 #include "base/port.h" |
| 15 #include "net/tools/balsa/balsa_enums.h" | 13 #include "net/tools/balsa/balsa_enums.h" |
| 16 #include "net/tools/balsa/balsa_headers.h" | 14 #include "net/tools/balsa/balsa_headers.h" |
| 17 #include "net/tools/balsa/balsa_visitor_interface.h" | 15 #include "net/tools/balsa/balsa_visitor_interface.h" |
| 18 #include "net/tools/balsa/buffer_interface.h" | 16 #include "net/tools/balsa/buffer_interface.h" |
| 19 #include "net/tools/balsa/http_message_constants.h" | 17 #include "net/tools/balsa/http_message_constants.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 Lines lines_; | 254 Lines lines_; |
| 257 | 255 |
| 258 BalsaHeaders* headers_; // This is not reset to NULL in Reset(). | 256 BalsaHeaders* headers_; // This is not reset to NULL in Reset(). |
| 259 DoNothingBalsaVisitor do_nothing_visitor_; | 257 DoNothingBalsaVisitor do_nothing_visitor_; |
| 260 }; | 258 }; |
| 261 | 259 |
| 262 } // namespace net | 260 } // namespace net |
| 263 | 261 |
| 264 #endif // NET_TOOLS_BALSA_BALSA_FRAME_H_ | 262 #endif // NET_TOOLS_BALSA_BALSA_FRAME_H_ |
| 265 | 263 |
| OLD | NEW |