| 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_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/debug/leak_tracker.h" | 11 #include "base/debug/leak_tracker.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "base/supports_user_data.h" | 15 #include "base/supports_user_data.h" |
| 16 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "googleurl/src/gurl.h" | |
| 19 #include "net/base/auth.h" | 18 #include "net/base/auth.h" |
| 20 #include "net/base/completion_callback.h" | 19 #include "net/base/completion_callback.h" |
| 21 #include "net/base/load_states.h" | 20 #include "net/base/load_states.h" |
| 22 #include "net/base/load_timing_info.h" | 21 #include "net/base/load_timing_info.h" |
| 23 #include "net/base/net_export.h" | 22 #include "net/base/net_export.h" |
| 24 #include "net/base/net_log.h" | 23 #include "net/base/net_log.h" |
| 25 #include "net/base/network_delegate.h" | 24 #include "net/base/network_delegate.h" |
| 26 #include "net/base/request_priority.h" | 25 #include "net/base/request_priority.h" |
| 27 #include "net/base/upload_progress.h" | 26 #include "net/base/upload_progress.h" |
| 28 #include "net/cookies/canonical_cookie.h" | 27 #include "net/cookies/canonical_cookie.h" |
| 29 #include "net/http/http_request_headers.h" | 28 #include "net/http/http_request_headers.h" |
| 30 #include "net/http/http_response_info.h" | 29 #include "net/http/http_response_info.h" |
| 31 #include "net/url_request/url_request_status.h" | 30 #include "net/url_request/url_request_status.h" |
| 31 #include "url/gurl.h" |
| 32 | 32 |
| 33 // Temporary layering violation to allow existing users of a deprecated | 33 // Temporary layering violation to allow existing users of a deprecated |
| 34 // interface. | 34 // interface. |
| 35 class ChildProcessSecurityPolicyTest; | 35 class ChildProcessSecurityPolicyTest; |
| 36 class TestAutomationProvider; | 36 class TestAutomationProvider; |
| 37 class URLRequestAutomationJob; | 37 class URLRequestAutomationJob; |
| 38 | 38 |
| 39 namespace base { | 39 namespace base { |
| 40 namespace debug { | 40 namespace debug { |
| 41 class StackTrace; | 41 class StackTrace; |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 LoadTimingInfo load_timing_info_; | 853 LoadTimingInfo load_timing_info_; |
| 854 | 854 |
| 855 scoped_ptr<const base::debug::StackTrace> stack_trace_; | 855 scoped_ptr<const base::debug::StackTrace> stack_trace_; |
| 856 | 856 |
| 857 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 857 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
| 858 }; | 858 }; |
| 859 | 859 |
| 860 } // namespace net | 860 } // namespace net |
| 861 | 861 |
| 862 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 862 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |