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_FLIP_FLIP_FRAMER_H_ | 5 #ifndef NET_FLIP_FLIP_FRAMER_H_ |
6 #define NET_FLIP_FLIP_FRAMER_H_ | 6 #define NET_FLIP_FLIP_FRAMER_H_ |
7 | 7 |
8 #ifdef _WIN32 | 8 #ifdef _WIN32 |
9 #include <winsock2.h> | 9 #include <winsock2.h> |
10 #else | 10 #else |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 scoped_ptr<z_stream> decompressor_; | 219 scoped_ptr<z_stream> decompressor_; |
220 FlipFramerVisitorInterface* visitor_; | 220 FlipFramerVisitorInterface* visitor_; |
221 | 221 |
222 static bool compression_default_; | 222 static bool compression_default_; |
223 }; | 223 }; |
224 | 224 |
225 } // namespace flip | 225 } // namespace flip |
226 | 226 |
227 #endif // NET_FLIP_FLIP_FRAMER_H_ | 227 #endif // NET_FLIP_FLIP_FRAMER_H_ |
228 | 228 |
OLD | NEW |