Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.cc

Issue 2136223003: ResourceDispatcherHostDelegate::OnResponseStarted doesn't need IPC::Sender (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/browser/resource_dispatcher_host_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/browser/resource_dispatcher_host_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698