| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |