| 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 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 5 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 6 | 6 |
| 7 #include "content/public/browser/navigation_data.h" | 7 #include "content/public/browser/navigation_data.h" |
| 8 #include "content/public/browser/resource_request_info.h" | 8 #include "content/public/browser/resource_request_info.h" |
| 9 #include "content/public/browser/stream_info.h" | 9 #include "content/public/browser/stream_info.h" |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 AppCacheService* appcache_service, | 24 AppCacheService* appcache_service, |
| 25 ResourceType resource_type, | 25 ResourceType resource_type, |
| 26 ScopedVector<ResourceThrottle>* throttles) { | 26 ScopedVector<ResourceThrottle>* throttles) { |
| 27 } | 27 } |
| 28 | 28 |
| 29 void ResourceDispatcherHostDelegate::DownloadStarting( | 29 void ResourceDispatcherHostDelegate::DownloadStarting( |
| 30 net::URLRequest* request, | 30 net::URLRequest* request, |
| 31 ResourceContext* resource_context, | 31 ResourceContext* resource_context, |
| 32 int child_id, | 32 int child_id, |
| 33 int route_id, | 33 int route_id, |
| 34 int request_id, | |
| 35 bool is_content_initiated, | 34 bool is_content_initiated, |
| 36 bool must_download, | 35 bool must_download, |
| 37 ScopedVector<ResourceThrottle>* throttles) { | 36 ScopedVector<ResourceThrottle>* throttles) { |
| 38 } | 37 } |
| 39 | 38 |
| 40 ResourceDispatcherHostLoginDelegate* | 39 ResourceDispatcherHostLoginDelegate* |
| 41 ResourceDispatcherHostDelegate::CreateLoginDelegate( | 40 ResourceDispatcherHostDelegate::CreateLoginDelegate( |
| 42 net::AuthChallengeInfo* auth_info, | 41 net::AuthChallengeInfo* auth_info, |
| 43 net::URLRequest* request) { | 42 net::URLRequest* request) { |
| 44 return nullptr; | 43 return nullptr; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 return nullptr; | 102 return nullptr; |
| 104 } | 103 } |
| 105 | 104 |
| 106 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 105 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
| 107 } | 106 } |
| 108 | 107 |
| 109 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 108 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
| 110 } | 109 } |
| 111 | 110 |
| 112 } // namespace content | 111 } // namespace content |
| OLD | NEW |