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 <memory> | 10 #include <memory> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
17 #include "crypto/ec_private_key.h" | 17 #include "crypto/ec_private_key.h" |
18 #include "net/base/net_error_details.h" | 18 #include "net/base/net_error_details.h" |
| 19 #include "net/base/net_export.h" |
19 #include "net/base/request_priority.h" | 20 #include "net/base/request_priority.h" |
20 #include "net/http/http_auth.h" | 21 #include "net/http/http_auth.h" |
21 #include "net/http/http_request_headers.h" | 22 #include "net/http/http_request_headers.h" |
22 #include "net/http/http_response_info.h" | 23 #include "net/http/http_response_info.h" |
23 #include "net/http/http_stream_factory.h" | 24 #include "net/http/http_stream_factory.h" |
24 #include "net/http/http_transaction.h" | 25 #include "net/http/http_transaction.h" |
25 #include "net/log/net_log_with_source.h" | 26 #include "net/log/net_log_with_source.h" |
26 #include "net/proxy/proxy_service.h" | 27 #include "net/proxy/proxy_service.h" |
27 #include "net/socket/connection_attempts.h" | 28 #include "net/socket/connection_attempts.h" |
28 #include "net/ssl/channel_id_service.h" | 29 #include "net/ssl/channel_id_service.h" |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 ConnectionAttempts connection_attempts_; | 377 ConnectionAttempts connection_attempts_; |
377 IPEndPoint remote_endpoint_; | 378 IPEndPoint remote_endpoint_; |
378 // Network error details for this transaction. | 379 // Network error details for this transaction. |
379 NetErrorDetails net_error_details_; | 380 NetErrorDetails net_error_details_; |
380 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); | 381 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); |
381 }; | 382 }; |
382 | 383 |
383 } // namespace net | 384 } // namespace net |
384 | 385 |
385 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ | 386 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ |
OLD | NEW |