| 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 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "net/base/net_export.h" | 22 #include "net/base/net_export.h" |
| 23 #include "net/base/net_log.h" | 23 #include "net/base/net_log.h" |
| 24 #include "net/base/network_delegate.h" | 24 #include "net/base/network_delegate.h" |
| 25 #include "net/base/request_priority.h" | 25 #include "net/base/request_priority.h" |
| 26 #include "net/base/upload_progress.h" | 26 #include "net/base/upload_progress.h" |
| 27 #include "net/cookies/canonical_cookie.h" | 27 #include "net/cookies/canonical_cookie.h" |
| 28 #include "net/http/http_request_headers.h" | 28 #include "net/http/http_request_headers.h" |
| 29 #include "net/http/http_response_info.h" | 29 #include "net/http/http_response_info.h" |
| 30 #include "net/url_request/url_request_status.h" | 30 #include "net/url_request/url_request_status.h" |
| 31 | 31 |
| 32 class FilePath; | |
| 33 // Temporary layering violation to allow existing users of a deprecated | 32 // Temporary layering violation to allow existing users of a deprecated |
| 34 // interface. | 33 // interface. |
| 35 class ChildProcessSecurityPolicyTest; | 34 class ChildProcessSecurityPolicyTest; |
| 36 class ComponentUpdateInterceptor; | 35 class ComponentUpdateInterceptor; |
| 37 class TestAutomationProvider; | 36 class TestAutomationProvider; |
| 38 class URLRequestAutomationJob; | 37 class URLRequestAutomationJob; |
| 39 | 38 |
| 40 namespace base { | 39 namespace base { |
| 41 namespace debug { | 40 namespace debug { |
| 42 class StackTrace; | 41 class StackTrace; |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 base::TimeTicks start_time_ticks_; | 852 base::TimeTicks start_time_ticks_; |
| 854 | 853 |
| 855 scoped_ptr<const base::debug::StackTrace> stack_trace_; | 854 scoped_ptr<const base::debug::StackTrace> stack_trace_; |
| 856 | 855 |
| 857 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 856 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
| 858 }; | 857 }; |
| 859 | 858 |
| 860 } // namespace net | 859 } // namespace net |
| 861 | 860 |
| 862 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 861 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |