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