| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 return false; | 70 return false; |
| 71 } | 71 } |
| 72 | 72 |
| 73 void ResourceDispatcherHostDelegate::OnStreamCreated( | 73 void ResourceDispatcherHostDelegate::OnStreamCreated( |
| 74 net::URLRequest* request, | 74 net::URLRequest* request, |
| 75 std::unique_ptr<content::StreamInfo> stream) {} | 75 std::unique_ptr<content::StreamInfo> stream) {} |
| 76 | 76 |
| 77 void ResourceDispatcherHostDelegate::OnResponseStarted( | 77 void ResourceDispatcherHostDelegate::OnResponseStarted( |
| 78 net::URLRequest* request, | 78 net::URLRequest* request, |
| 79 ResourceContext* resource_context, | 79 ResourceContext* resource_context, |
| 80 ResourceResponse* response, | 80 ResourceResponse* response) {} |
| 81 IPC::Sender* sender) { | |
| 82 } | |
| 83 | 81 |
| 84 void ResourceDispatcherHostDelegate::OnRequestRedirected( | 82 void ResourceDispatcherHostDelegate::OnRequestRedirected( |
| 85 const GURL& redirect_url, | 83 const GURL& redirect_url, |
| 86 net::URLRequest* request, | 84 net::URLRequest* request, |
| 87 ResourceContext* resource_context, | 85 ResourceContext* resource_context, |
| 88 ResourceResponse* response) { | 86 ResourceResponse* response) { |
| 89 } | 87 } |
| 90 | 88 |
| 91 void ResourceDispatcherHostDelegate::RequestComplete( | 89 void ResourceDispatcherHostDelegate::RequestComplete( |
| 92 net::URLRequest* url_request) { | 90 net::URLRequest* url_request) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 106 std::unique_ptr<net::ClientCertStore> | 104 std::unique_ptr<net::ClientCertStore> |
| 107 ResourceDispatcherHostDelegate::CreateClientCertStore( | 105 ResourceDispatcherHostDelegate::CreateClientCertStore( |
| 108 ResourceContext* resource_context) { | 106 ResourceContext* resource_context) { |
| 109 return std::unique_ptr<net::ClientCertStore>(); | 107 return std::unique_ptr<net::ClientCertStore>(); |
| 110 } | 108 } |
| 111 | 109 |
| 112 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 110 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
| 113 } | 111 } |
| 114 | 112 |
| 115 } // namespace content | 113 } // namespace content |
| OLD | NEW |