| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 virtual void OnHttpsProxyTunnelResponse(const HttpResponseInfo& response_info, | 92 virtual void OnHttpsProxyTunnelResponse(const HttpResponseInfo& response_info, |
| 93 const SSLConfig& used_ssl_config, | 93 const SSLConfig& used_ssl_config, |
| 94 const ProxyInfo& used_proxy_info, | 94 const ProxyInfo& used_proxy_info, |
| 95 HttpStreamBase* stream) OVERRIDE; | 95 HttpStreamBase* stream) OVERRIDE; |
| 96 | 96 |
| 97 private: | 97 private: |
| 98 friend class HttpNetworkTransactionSSLTest; | 98 friend class HttpNetworkTransactionSSLTest; |
| 99 | 99 |
| 100 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, | 100 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, |
| 101 ResetStateForRestart); | 101 ResetStateForRestart); |
| 102 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, |
| 103 SetPriorityBasic); |
| 104 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, |
| 105 SetStreamRequestPriority); |
| 102 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 106 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 103 WindowUpdateReceived); | 107 WindowUpdateReceived); |
| 104 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 108 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 105 WindowUpdateSent); | 109 WindowUpdateSent); |
| 106 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 110 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 107 WindowUpdateOverflow); | 111 WindowUpdateOverflow); |
| 108 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 112 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 109 FlowControlStallResume); | 113 FlowControlStallResume); |
| 110 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 114 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 111 FlowControlStallResumeAfterSettings); | 115 FlowControlStallResumeAfterSettings); |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 // True when the tunnel is in the process of being established - we can't | 309 // True when the tunnel is in the process of being established - we can't |
| 306 // read from the socket until the tunnel is done. | 310 // read from the socket until the tunnel is done. |
| 307 bool establishing_tunnel_; | 311 bool establishing_tunnel_; |
| 308 | 312 |
| 309 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); | 313 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); |
| 310 }; | 314 }; |
| 311 | 315 |
| 312 } // namespace net | 316 } // namespace net |
| 313 | 317 |
| 314 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 318 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| OLD | NEW |