| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 const ProxyInfo& used_proxy_info, | 109 const ProxyInfo& used_proxy_info, |
| 110 HttpStream* stream) override; | 110 HttpStream* stream) override; |
| 111 | 111 |
| 112 void GetConnectionAttempts(ConnectionAttempts* out) const override; | 112 void GetConnectionAttempts(ConnectionAttempts* out) const override; |
| 113 | 113 |
| 114 private: | 114 private: |
| 115 friend class HttpNetworkTransactionSSLTest; | 115 friend class HttpNetworkTransactionSSLTest; |
| 116 | 116 |
| 117 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, | 117 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, |
| 118 ResetStateForRestart); | 118 ResetStateForRestart); |
| 119 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, EnableNPN); | |
| 120 FRIEND_TEST_ALL_PREFIXES(HttpNetworkTransactionTest, DisableNPN); | |
| 121 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 119 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 122 WindowUpdateReceived); | 120 WindowUpdateReceived); |
| 123 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 121 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 124 WindowUpdateSent); | 122 WindowUpdateSent); |
| 125 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 123 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 126 WindowUpdateOverflow); | 124 WindowUpdateOverflow); |
| 127 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 125 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 128 FlowControlStallResume); | 126 FlowControlStallResume); |
| 129 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, | 127 FRIEND_TEST_ALL_PREFIXES(SpdyNetworkTransactionTest, |
| 130 FlowControlStallResumeAfterSettings); | 128 FlowControlStallResumeAfterSettings); |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 355 |
| 358 ConnectionAttempts connection_attempts_; | 356 ConnectionAttempts connection_attempts_; |
| 359 IPEndPoint remote_endpoint_; | 357 IPEndPoint remote_endpoint_; |
| 360 | 358 |
| 361 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); | 359 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); |
| 362 }; | 360 }; |
| 363 | 361 |
| 364 } // namespace net | 362 } // namespace net |
| 365 | 363 |
| 366 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 364 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| OLD | NEW |