| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 class FilePath; | 31 class FilePath; |
| 32 // Temporary layering violation to allow existing users of a deprecated | 32 // Temporary layering violation to allow existing users of a deprecated |
| 33 // interface. | 33 // interface. |
| 34 class AutoUpdateInterceptor; | 34 class AutoUpdateInterceptor; |
| 35 class ChildProcessSecurityPolicyTest; | 35 class ChildProcessSecurityPolicyTest; |
| 36 class ComponentUpdateInterceptor; | 36 class ComponentUpdateInterceptor; |
| 37 class ResourceDispatcherHostTest; | 37 class ResourceDispatcherHostTest; |
| 38 class TestAutomationProvider; | 38 class TestAutomationProvider; |
| 39 class URLRequestAutomationJob; | 39 class URLRequestAutomationJob; |
| 40 class UserScriptListenerTest; | 40 class UserScriptListenerTest; |
| 41 class NetworkDelayListenerTest; | |
| 42 | 41 |
| 43 // Temporary layering violation to allow existing users of a deprecated | 42 // Temporary layering violation to allow existing users of a deprecated |
| 44 // interface. | 43 // interface. |
| 45 namespace appcache { | 44 namespace appcache { |
| 46 class AppCacheInterceptor; | 45 class AppCacheInterceptor; |
| 47 class AppCacheRequestHandlerTest; | 46 class AppCacheRequestHandlerTest; |
| 48 class AppCacheURLRequestJobTest; | 47 class AppCacheURLRequestJobTest; |
| 49 } | 48 } |
| 50 | 49 |
| 51 namespace base { | 50 namespace base { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 // explicitly friended here and should be removed over time. | 168 // explicitly friended here and should be removed over time. |
| 170 class NET_EXPORT Deprecated { | 169 class NET_EXPORT Deprecated { |
| 171 private: | 170 private: |
| 172 // TODO(willchan): Kill off these friend declarations. | 171 // TODO(willchan): Kill off these friend declarations. |
| 173 friend class ::AutoUpdateInterceptor; | 172 friend class ::AutoUpdateInterceptor; |
| 174 friend class ::ChildProcessSecurityPolicyTest; | 173 friend class ::ChildProcessSecurityPolicyTest; |
| 175 friend class ::ComponentUpdateInterceptor; | 174 friend class ::ComponentUpdateInterceptor; |
| 176 friend class ::ResourceDispatcherHostTest; | 175 friend class ::ResourceDispatcherHostTest; |
| 177 friend class ::TestAutomationProvider; | 176 friend class ::TestAutomationProvider; |
| 178 friend class ::UserScriptListenerTest; | 177 friend class ::UserScriptListenerTest; |
| 179 friend class ::NetworkDelayListenerTest; | |
| 180 friend class ::URLRequestAutomationJob; | 178 friend class ::URLRequestAutomationJob; |
| 181 friend class TestInterceptor; | 179 friend class TestInterceptor; |
| 182 friend class URLRequestFilter; | 180 friend class URLRequestFilter; |
| 183 friend class appcache::AppCacheInterceptor; | 181 friend class appcache::AppCacheInterceptor; |
| 184 friend class appcache::AppCacheRequestHandlerTest; | 182 friend class appcache::AppCacheRequestHandlerTest; |
| 185 friend class appcache::AppCacheURLRequestJobTest; | 183 friend class appcache::AppCacheURLRequestJobTest; |
| 186 friend class fileapi::FileSystemDirURLRequestJobTest; | 184 friend class fileapi::FileSystemDirURLRequestJobTest; |
| 187 friend class fileapi::FileSystemOperationWriteTest; | 185 friend class fileapi::FileSystemOperationWriteTest; |
| 188 friend class fileapi::FileSystemURLRequestJobTest; | 186 friend class fileapi::FileSystemURLRequestJobTest; |
| 189 friend class fileapi::FileWriterDelegateTest; | 187 friend class fileapi::FileWriterDelegateTest; |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 // the authentication challenge being handled by |NotifyAuthRequired|. | 817 // the authentication challenge being handled by |NotifyAuthRequired|. |
| 820 AuthCredentials auth_credentials_; | 818 AuthCredentials auth_credentials_; |
| 821 scoped_refptr<AuthChallengeInfo> auth_info_; | 819 scoped_refptr<AuthChallengeInfo> auth_info_; |
| 822 | 820 |
| 823 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 821 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
| 824 }; | 822 }; |
| 825 | 823 |
| 826 } // namespace net | 824 } // namespace net |
| 827 | 825 |
| 828 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 826 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
| OLD | NEW |