Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: net/tools/flip_server/spdy_interface.h

Issue 25085002: Break out balsa and epoll_server from net/tools/flip_server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/tools/flip_server/sm_interface.h ('k') | net/tools/flip_server/spdy_interface_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/tools/flip_server/sm_interface.h ('k') | net/tools/flip_server/spdy_interface_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698