| 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/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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |