| 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_CURVECP_SERVER_PACKETIZER_H_ | 5 #ifndef NET_CURVECP_SERVER_PACKETIZER_H_ |
| 6 #define NET_CURVECP_SERVER_PACKETIZER_H_ | 6 #define NET_CURVECP_SERVER_PACKETIZER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 CompletionCallbackImpl<ServerPacketizer> read_callback_; | 89 CompletionCallbackImpl<ServerPacketizer> read_callback_; |
| 90 CompletionCallbackImpl<ServerPacketizer> write_callback_; | 90 CompletionCallbackImpl<ServerPacketizer> write_callback_; |
| 91 | 91 |
| 92 DISALLOW_COPY_AND_ASSIGN(ServerPacketizer); | 92 DISALLOW_COPY_AND_ASSIGN(ServerPacketizer); |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace net | 95 } // namespace net |
| 96 | 96 |
| 97 #endif // NET_CURVECP_SERVER_PACKETIZER_H_ | 97 #endif // NET_CURVECP_SERVER_PACKETIZER_H_ |
| OLD | NEW |