| 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_SPDY_SPDY_FRAMER_H_ | 5 #ifndef NET_SPDY_SPDY_FRAMER_H_ |
| 6 #define NET_SPDY_SPDY_FRAMER_H_ | 6 #define NET_SPDY_SPDY_FRAMER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <utility> | 12 #include <utility> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/sys_byteorder.h" |
| 17 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 18 #include "net/base/sys_byteorder.h" | |
| 19 #include "net/spdy/spdy_protocol.h" | 19 #include "net/spdy/spdy_protocol.h" |
| 20 | 20 |
| 21 typedef struct z_stream_s z_stream; // Forward declaration for zlib. | 21 typedef struct z_stream_s z_stream; // Forward declaration for zlib. |
| 22 | 22 |
| 23 namespace net { | 23 namespace net { |
| 24 class HttpProxyClientSocketPoolTest; | 24 class HttpProxyClientSocketPoolTest; |
| 25 class HttpNetworkLayer; | 25 class HttpNetworkLayer; |
| 26 class HttpNetworkTransactionTest; | 26 class HttpNetworkTransactionTest; |
| 27 class SpdyHttpStreamTest; | 27 class SpdyHttpStreamTest; |
| 28 class SpdyNetworkTransactionTest; | 28 class SpdyNetworkTransactionTest; |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 499 |
| 500 std::string display_protocol_; | 500 std::string display_protocol_; |
| 501 | 501 |
| 502 static bool compression_default_; | 502 static bool compression_default_; |
| 503 static int spdy_version_; | 503 static int spdy_version_; |
| 504 }; | 504 }; |
| 505 | 505 |
| 506 } // namespace spdy | 506 } // namespace spdy |
| 507 | 507 |
| 508 #endif // NET_SPDY_SPDY_FRAMER_H_ | 508 #endif // NET_SPDY_SPDY_FRAMER_H_ |
| OLD | NEW |