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

Side by Side Diff: net/tools/flip_server/sm_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: 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 #ifndef NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_ 5 #ifndef NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_
6 #define NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_ 6 #define NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_
7 7
8 // State Machine Interfaces 8 // State Machine Interfaces
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "net/tools/flip_server/balsa_headers.h" 12 #include "net/tools/balsa/balsa_headers.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 class EpollServer; 16 class EpollServer;
17 class SMConnectionPoolInterface; 17 class SMConnectionPoolInterface;
18 class SMConnection; 18 class SMConnection;
19 19
20 class SMInterface { 20 class SMInterface {
21 public: 21 public:
22 virtual void InitSMInterface(SMInterface* sm_other_interface, 22 virtual void InitSMInterface(SMInterface* sm_other_interface,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 class SMConnectionPoolInterface { 72 class SMConnectionPoolInterface {
73 public: 73 public:
74 virtual ~SMConnectionPoolInterface() {} 74 virtual ~SMConnectionPoolInterface() {}
75 virtual void SMConnectionDone(SMConnection* connection) = 0; 75 virtual void SMConnectionDone(SMConnection* connection) = 0;
76 }; 76 };
77 77
78 } // namespace net 78 } // namespace net
79 79
80 #endif // NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_ 80 #endif // NET_TOOLS_FLIP_SERVER_SM_INTERFACE_H_
81 81
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698