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

Side by Side Diff: content/shell/shell_content_browser_client.cc

Issue 9384014: Remove knowledge about SSLClientAuthHandler from chrome. Instead a callback is given to the embed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments+sync Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/shell_content_browser_client.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/shell/shell_content_browser_client.h" 5 #include "content/shell/shell_content_browser_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "content/shell/shell.h" 9 #include "content/shell/shell.h"
10 #include "content/shell/shell_browser_main.h" 10 #include "content/shell/shell_browser_main.h"
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 const net::SSLInfo& ssl_info, 197 const net::SSLInfo& ssl_info,
198 const GURL& request_url, 198 const GURL& request_url,
199 bool overridable, 199 bool overridable,
200 const base::Callback<void(bool)>& callback, 200 const base::Callback<void(bool)>& callback,
201 bool* cancel_request) { 201 bool* cancel_request) {
202 } 202 }
203 203
204 void ShellContentBrowserClient::SelectClientCertificate( 204 void ShellContentBrowserClient::SelectClientCertificate(
205 int render_process_id, 205 int render_process_id,
206 int render_view_id, 206 int render_view_id,
207 SSLClientAuthHandler* handler) { 207 const net::HttpNetworkSession* network_session,
208 net::SSLCertRequestInfo* cert_request_info,
209 const base::Callback<void(net::X509Certificate*)>& callback) {
208 } 210 }
209 211
210 void ShellContentBrowserClient::AddNewCertificate( 212 void ShellContentBrowserClient::AddNewCertificate(
211 net::URLRequest* request, 213 net::URLRequest* request,
212 net::X509Certificate* cert, 214 net::X509Certificate* cert,
213 int render_process_id, 215 int render_process_id,
214 int render_view_id) { 216 int render_view_id) {
215 } 217 }
216 218
217 void ShellContentBrowserClient::RequestDesktopNotificationPermission( 219 void ShellContentBrowserClient::RequestDesktopNotificationPermission(
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 #endif 328 #endif
327 329
328 #if defined(USE_NSS) 330 #if defined(USE_NSS)
329 crypto::CryptoModuleBlockingPasswordDelegate* 331 crypto::CryptoModuleBlockingPasswordDelegate*
330 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 332 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
331 return NULL; 333 return NULL;
332 } 334 }
333 #endif 335 #endif
334 336
335 } // namespace content 337 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell_content_browser_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698