| 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 #include "net/ssl/client_cert_store.h" | 10 #include "net/ssl/client_cert_store.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 net::URLRequest* request, | 23 net::URLRequest* request, |
| 24 ResourceContext* resource_context, | 24 ResourceContext* resource_context, |
| 25 AppCacheService* appcache_service, | 25 AppCacheService* appcache_service, |
| 26 ResourceType resource_type, | 26 ResourceType resource_type, |
| 27 ScopedVector<ResourceThrottle>* throttles) { | 27 ScopedVector<ResourceThrottle>* throttles) { |
| 28 } | 28 } |
| 29 | 29 |
| 30 void ResourceDispatcherHostDelegate::DownloadStarting( | 30 void ResourceDispatcherHostDelegate::DownloadStarting( |
| 31 net::URLRequest* request, | 31 net::URLRequest* request, |
| 32 ResourceContext* resource_context, | 32 ResourceContext* resource_context, |
| 33 int child_id, | |
| 34 int route_id, | |
| 35 bool is_content_initiated, | 33 bool is_content_initiated, |
| 36 bool must_download, | 34 bool must_download, |
| 37 ScopedVector<ResourceThrottle>* throttles) { | 35 ScopedVector<ResourceThrottle>* throttles) { |
| 38 } | 36 } |
| 39 | 37 |
| 40 ResourceDispatcherHostLoginDelegate* | 38 ResourceDispatcherHostLoginDelegate* |
| 41 ResourceDispatcherHostDelegate::CreateLoginDelegate( | 39 ResourceDispatcherHostDelegate::CreateLoginDelegate( |
| 42 net::AuthChallengeInfo* auth_info, | 40 net::AuthChallengeInfo* auth_info, |
| 43 net::URLRequest* request) { | 41 net::URLRequest* request) { |
| 44 return nullptr; | 42 return nullptr; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 107 |
| 110 void ResourceDispatcherHostDelegate::OnAbortedFrameLoad( | 108 void ResourceDispatcherHostDelegate::OnAbortedFrameLoad( |
| 111 const GURL& url, | 109 const GURL& url, |
| 112 base::TimeDelta request_loading_time) { | 110 base::TimeDelta request_loading_time) { |
| 113 } | 111 } |
| 114 | 112 |
| 115 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 113 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
| 116 } | 114 } |
| 117 | 115 |
| 118 } // namespace content | 116 } // namespace content |
| OLD | NEW |