| 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_URL_REQUEST_URL_REQUEST_JOB_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_JOB_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_JOB_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_JOB_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "net/socket/connection_attempts.h" | 24 #include "net/socket/connection_attempts.h" |
| 25 #include "net/url_request/redirect_info.h" | 25 #include "net/url_request/redirect_info.h" |
| 26 #include "net/url_request/url_request.h" | 26 #include "net/url_request/url_request.h" |
| 27 #include "url/gurl.h" | 27 #include "url/gurl.h" |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 | 30 |
| 31 class AuthChallengeInfo; | 31 class AuthChallengeInfo; |
| 32 class AuthCredentials; | 32 class AuthCredentials; |
| 33 class CookieOptions; | 33 class CookieOptions; |
| 34 class Filter; | |
| 35 class HttpRequestHeaders; | 34 class HttpRequestHeaders; |
| 36 class HttpResponseInfo; | 35 class HttpResponseInfo; |
| 37 class IOBuffer; | 36 class IOBuffer; |
| 38 struct LoadTimingInfo; | 37 struct LoadTimingInfo; |
| 39 class NetworkDelegate; | 38 class NetworkDelegate; |
| 40 class ProxyServer; | 39 class ProxyServer; |
| 41 class SSLCertRequestInfo; | 40 class SSLCertRequestInfo; |
| 42 class SSLInfo; | 41 class SSLInfo; |
| 43 class SSLPrivateKey; | 42 class SSLPrivateKey; |
| 44 class UploadDataStream; | 43 class UploadDataStream; |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 CompletionCallback read_raw_callback_; | 434 CompletionCallback read_raw_callback_; |
| 436 | 435 |
| 437 base::WeakPtrFactory<URLRequestJob> weak_factory_; | 436 base::WeakPtrFactory<URLRequestJob> weak_factory_; |
| 438 | 437 |
| 439 DISALLOW_COPY_AND_ASSIGN(URLRequestJob); | 438 DISALLOW_COPY_AND_ASSIGN(URLRequestJob); |
| 440 }; | 439 }; |
| 441 | 440 |
| 442 } // namespace net | 441 } // namespace net |
| 443 | 442 |
| 444 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_ | 443 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_ |
| OLD | NEW |