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_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ | 5 #ifndef NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ |
6 #define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ | 6 #define NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "net/spdy/buffered_spdy_framer.h" | 13 #include "net/spdy/buffered_spdy_framer.h" |
14 #include "net/spdy/spdy_protocol.h" | 14 #include "net/spdy/spdy_protocol.h" |
15 #include "net/tools/flip_server/balsa_headers.h" | 15 #include "net/tools/balsa/balsa_headers.h" |
16 #include "net/tools/flip_server/balsa_visitor_interface.h" | 16 #include "net/tools/balsa/balsa_visitor_interface.h" |
17 #include "net/tools/flip_server/output_ordering.h" | 17 #include "net/tools/flip_server/output_ordering.h" |
18 #include "net/tools/flip_server/sm_connection.h" | 18 #include "net/tools/flip_server/sm_connection.h" |
19 #include "net/tools/flip_server/sm_interface.h" | 19 #include "net/tools/flip_server/sm_interface.h" |
20 | 20 |
21 namespace net { | 21 namespace net { |
22 | 22 |
23 class FlipAcceptor; | 23 class FlipAcceptor; |
24 class MemoryCache; | 24 class MemoryCache; |
25 | 25 |
26 class SpdySM : public BufferedSpdyFramerVisitorInterface, | 26 class SpdySM : public BufferedSpdyFramerVisitorInterface, |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 typedef std::map<uint32, SMInterface*> StreamToSmif; | 192 typedef std::map<uint32, SMInterface*> StreamToSmif; |
193 StreamToSmif stream_to_smif_; | 193 StreamToSmif stream_to_smif_; |
194 bool close_on_error_; | 194 bool close_on_error_; |
195 | 195 |
196 static std::string forward_ip_header_; | 196 static std::string forward_ip_header_; |
197 }; | 197 }; |
198 | 198 |
199 } // namespace net | 199 } // namespace net |
200 | 200 |
201 #endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ | 201 #endif // NET_TOOLS_FLIP_SERVER_SPDY_INTERFACE_H_ |
OLD | NEW |