| 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/stream_handle.h" | 7 #include "content/public/browser/stream_handle.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 net::URLRequest* request, | 41 net::URLRequest* request, |
| 42 ResourceContext* resource_context, | 42 ResourceContext* resource_context, |
| 43 int child_id, | 43 int child_id, |
| 44 int route_id, | 44 int route_id, |
| 45 int request_id, | 45 int request_id, |
| 46 bool is_content_initiated, | 46 bool is_content_initiated, |
| 47 bool must_download, | 47 bool must_download, |
| 48 ScopedVector<ResourceThrottle>* throttles) { | 48 ScopedVector<ResourceThrottle>* throttles) { |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool ResourceDispatcherHostDelegate::AcceptSSLClientCertificateRequest( | |
| 52 net::URLRequest* request, | |
| 53 net::SSLCertRequestInfo* cert_request_info) { | |
| 54 return false; | |
| 55 } | |
| 56 | |
| 57 bool ResourceDispatcherHostDelegate::AcceptAuthRequest( | |
| 58 net::URLRequest* request, | |
| 59 net::AuthChallengeInfo* auth_info) { | |
| 60 return false; | |
| 61 } | |
| 62 | |
| 63 ResourceDispatcherHostLoginDelegate* | 51 ResourceDispatcherHostLoginDelegate* |
| 64 ResourceDispatcherHostDelegate::CreateLoginDelegate( | 52 ResourceDispatcherHostDelegate::CreateLoginDelegate( |
| 65 net::AuthChallengeInfo* auth_info, | 53 net::AuthChallengeInfo* auth_info, |
| 66 net::URLRequest* request) { | 54 net::URLRequest* request) { |
| 67 return NULL; | 55 return NULL; |
| 68 } | 56 } |
| 69 | 57 |
| 70 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, | 58 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, |
| 71 int child_id, | 59 int child_id, |
| 72 int route_id) { | 60 int route_id) { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 ResourceResponse* response) { | 99 ResourceResponse* response) { |
| 112 } | 100 } |
| 113 | 101 |
| 114 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 102 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
| 115 } | 103 } |
| 116 | 104 |
| 117 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 105 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
| 118 } | 106 } |
| 119 | 107 |
| 120 } // namespace content | 108 } // namespace content |
| OLD | NEW |