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

Side by Side Diff: net/tools/flip_server/streamer_interface.cc

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: Cleanup 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "net/tools/flip_server/streamer_interface.h" 5 #include "net/tools/flip_server/streamer_interface.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "net/tools/flip_server/balsa_frame.h" 9 #include "net/tools/balsa/balsa_frame.h"
10 #include "net/tools/flip_server/constants.h" 10 #include "net/tools/flip_server/constants.h"
11 #include "net/tools/flip_server/flip_config.h" 11 #include "net/tools/flip_server/flip_config.h"
12 #include "net/tools/flip_server/sm_connection.h" 12 #include "net/tools/flip_server/sm_connection.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 std::string StreamerSM::forward_ip_header_; 16 std::string StreamerSM::forward_ip_header_;
17 17
18 StreamerSM::StreamerSM(SMConnection* connection, 18 StreamerSM::StreamerSM(SMConnection* connection,
19 SMInterface* sm_other_interface, 19 SMInterface* sm_other_interface,
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 void StreamerSM::HandleBodyError(BalsaFrame* framer) { 198 void StreamerSM::HandleBodyError(BalsaFrame* framer) {
199 HandleError(); 199 HandleError();
200 } 200 }
201 201
202 void StreamerSM::HandleError() { 202 void StreamerSM::HandleError() {
203 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected"; 203 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected";
204 } 204 }
205 205
206 } // namespace net 206 } // namespace net
207 207
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698