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