Chromium Code Reviews| Index: net/url_request/url_request.h |
| diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h |
| index e623c202e71f1b0ed412e5998cd51f0015e3ab3b..10afb9a88874e213e9b00b06183a5e5d03335f99 100644 |
| --- a/net/url_request/url_request.h |
| +++ b/net/url_request/url_request.h |
| @@ -28,6 +28,7 @@ |
| #include "net/http/http_request_headers.h" |
| #include "net/http/http_response_info.h" |
| #include "net/log/net_log.h" |
| +#include "net/socket/connection_attempts.h" |
|
Randy Smith (Not in Mondays)
2015/05/01 17:03:44
Unneeded; just forward declare ConnectionAttempts
Deprecated (see juliatuttle)
2015/05/04 19:53:37
Acknowledged.
|
| #include "net/url_request/url_request_status.h" |
| #include "url/gurl.h" |
| @@ -608,6 +609,8 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe), |
| return proxy_server_; |
| } |
| + void GetConnectionAttempts(ConnectionAttempts* out) const; |
| + |
| protected: |
| // Allow the URLRequestJob class to control the is_pending() flag. |
| void set_is_pending(bool value) { is_pending_ = value; } |