| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "base/power_monitor/power_observer.h" | 15 #include "base/power_monitor/power_observer.h" |
| 16 #include "googleurl/src/gurl.h" | |
| 17 #include "net/base/filter.h" | 16 #include "net/base/filter.h" |
| 18 #include "net/base/host_port_pair.h" | 17 #include "net/base/host_port_pair.h" |
| 19 #include "net/base/load_states.h" | 18 #include "net/base/load_states.h" |
| 20 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
| 21 #include "net/base/request_priority.h" | 20 #include "net/base/request_priority.h" |
| 22 #include "net/base/upload_progress.h" | 21 #include "net/base/upload_progress.h" |
| 23 #include "net/cookies/canonical_cookie.h" | 22 #include "net/cookies/canonical_cookie.h" |
| 23 #include "url/gurl.h" |
| 24 | 24 |
| 25 namespace net { | 25 namespace net { |
| 26 | 26 |
| 27 class AuthChallengeInfo; | 27 class AuthChallengeInfo; |
| 28 class AuthCredentials; | 28 class AuthCredentials; |
| 29 class CookieOptions; | 29 class CookieOptions; |
| 30 class HttpRequestHeaders; | 30 class HttpRequestHeaders; |
| 31 class HttpResponseInfo; | 31 class HttpResponseInfo; |
| 32 class IOBuffer; | 32 class IOBuffer; |
| 33 struct LoadTimingInfo; | 33 struct LoadTimingInfo; |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 NetworkDelegate* network_delegate_; | 402 NetworkDelegate* network_delegate_; |
| 403 | 403 |
| 404 base::WeakPtrFactory<URLRequestJob> weak_factory_; | 404 base::WeakPtrFactory<URLRequestJob> weak_factory_; |
| 405 | 405 |
| 406 DISALLOW_COPY_AND_ASSIGN(URLRequestJob); | 406 DISALLOW_COPY_AND_ASSIGN(URLRequestJob); |
| 407 }; | 407 }; |
| 408 | 408 |
| 409 } // namespace net | 409 } // namespace net |
| 410 | 410 |
| 411 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_ | 411 #endif // NET_URL_REQUEST_URL_REQUEST_JOB_H_ |
| OLD | NEW |