OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_HTTP_INTERFACE_H_ | 5 #ifndef NET_TOOLS_FLIP_SERVER_HTTP_INTERFACE_H_ |
6 #define NET_TOOLS_FLIP_SERVER_HTTP_INTERFACE_H_ | 6 #define NET_TOOLS_FLIP_SERVER_HTTP_INTERFACE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "net/tools/flip_server/balsa_headers.h" | 11 #include "net/tools/balsa/balsa_headers.h" |
12 #include "net/tools/flip_server/balsa_visitor_interface.h" | 12 #include "net/tools/balsa/balsa_visitor_interface.h" |
13 #include "net/tools/flip_server/output_ordering.h" | 13 #include "net/tools/flip_server/output_ordering.h" |
14 #include "net/tools/flip_server/sm_connection.h" | 14 #include "net/tools/flip_server/sm_connection.h" |
15 #include "net/tools/flip_server/sm_interface.h" | 15 #include "net/tools/flip_server/sm_interface.h" |
16 | 16 |
17 namespace net { | 17 namespace net { |
18 | 18 |
19 class BalsaFrame; | 19 class BalsaFrame; |
20 class DataFrame; | 20 class DataFrame; |
21 class EpollServer; | 21 class EpollServer; |
22 class FlipAcceptor; | 22 class FlipAcceptor; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 SMInterface* sm_spdy_interface_; | 127 SMInterface* sm_spdy_interface_; |
128 OutputList* output_list_; | 128 OutputList* output_list_; |
129 OutputOrdering output_ordering_; | 129 OutputOrdering output_ordering_; |
130 MemoryCache* memory_cache_; | 130 MemoryCache* memory_cache_; |
131 FlipAcceptor* acceptor_; | 131 FlipAcceptor* acceptor_; |
132 }; | 132 }; |
133 | 133 |
134 } // namespace net | 134 } // namespace net |
135 | 135 |
136 #endif // NET_TOOLS_FLIP_SERVER_HTTP_INTERFACE_H_ | 136 #endif // NET_TOOLS_FLIP_SERVER_HTTP_INTERFACE_H_ |
OLD | NEW |