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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 friend class ::ComponentUpdateInterceptor; | 171 friend class ::ComponentUpdateInterceptor; |
172 friend class ::ResourceDispatcherHostTest; | 172 friend class ::ResourceDispatcherHostTest; |
173 friend class ::TestAutomationProvider; | 173 friend class ::TestAutomationProvider; |
174 friend class ::UserScriptListenerTest; | 174 friend class ::UserScriptListenerTest; |
175 friend class ::URLRequestAutomationJob; | 175 friend class ::URLRequestAutomationJob; |
176 friend class TestInterceptor; | 176 friend class TestInterceptor; |
177 friend class URLRequestFilter; | 177 friend class URLRequestFilter; |
178 friend class appcache::AppCacheInterceptor; | 178 friend class appcache::AppCacheInterceptor; |
179 friend class appcache::AppCacheRequestHandlerTest; | 179 friend class appcache::AppCacheRequestHandlerTest; |
180 friend class appcache::AppCacheURLRequestJobTest; | 180 friend class appcache::AppCacheURLRequestJobTest; |
| 181 friend class chrome_browser_net::ConnectInterceptor; |
181 friend class fileapi::FileSystemDirURLRequestJobTest; | 182 friend class fileapi::FileSystemDirURLRequestJobTest; |
182 friend class fileapi::FileSystemOperationWriteTest; | 183 friend class fileapi::FileSystemOperationWriteTest; |
183 friend class fileapi::FileSystemURLRequestJobTest; | 184 friend class fileapi::FileSystemURLRequestJobTest; |
184 friend class fileapi::FileWriterDelegateTest; | 185 friend class fileapi::FileWriterDelegateTest; |
185 friend class policy::CannedResponseInterceptor; | 186 friend class policy::CannedResponseInterceptor; |
186 friend class webkit_blob::BlobURLRequestJobTest; | 187 friend class webkit_blob::BlobURLRequestJobTest; |
187 | 188 |
188 // Use URLRequestJobFactory::ProtocolHandler instead. | 189 // Use URLRequestJobFactory::ProtocolHandler instead. |
189 static ProtocolFactory* RegisterProtocolFactory(const std::string& scheme, | 190 static ProtocolFactory* RegisterProtocolFactory(const std::string& scheme, |
190 ProtocolFactory* factory); | 191 ProtocolFactory* factory); |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 // messages to network delegate. | 803 // messages to network delegate. |
803 // TODO(battre): Remove this. http://crbug.com/89049 | 804 // TODO(battre): Remove this. http://crbug.com/89049 |
804 bool has_notified_completion_; | 805 bool has_notified_completion_; |
805 | 806 |
806 DISALLOW_COPY_AND_ASSIGN(URLRequest); | 807 DISALLOW_COPY_AND_ASSIGN(URLRequest); |
807 }; | 808 }; |
808 | 809 |
809 } // namespace net | 810 } // namespace net |
810 | 811 |
811 #endif // NET_URL_REQUEST_URL_REQUEST_H_ | 812 #endif // NET_URL_REQUEST_URL_REQUEST_H_ |
OLD | NEW |