| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 | 355 |
| 356 // The time the Start method was called. | 356 // The time the Start method was called. |
| 357 base::Time start_time_; | 357 base::Time start_time_; |
| 358 | 358 |
| 359 // The time the DoSSLConnect() method was called (if it got called). | 359 // The time the DoSSLConnect() method was called (if it got called). |
| 360 base::TimeTicks ssl_connect_start_time_; | 360 base::TimeTicks ssl_connect_start_time_; |
| 361 | 361 |
| 362 // The next state in the state machine. | 362 // The next state in the state machine. |
| 363 State next_state_; | 363 State next_state_; |
| 364 | 364 |
| 365 // The hostname and port of the peer. This is not necessarily the one | 365 // The hostname and port of the endpoint. This is not necessarily the one |
| 366 // specified by the URL, due to Alternate-Protocol or proxies. | 366 // specified by the URL, due to Alternate-Protocol or fixed testing ports. |
| 367 HostPortPair peer_; | 367 HostPortPair endpoint_; |
| 368 | 368 |
| 369 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); | 369 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); |
| 370 }; | 370 }; |
| 371 | 371 |
| 372 } // namespace net | 372 } // namespace net |
| 373 | 373 |
| 374 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 374 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
| OLD | NEW |