| 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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 int render_view_id, | 82 int render_view_id, |
| 83 int cert_error, | 83 int cert_error, |
| 84 const net::SSLInfo& ssl_info, | 84 const net::SSLInfo& ssl_info, |
| 85 const GURL& request_url, | 85 const GURL& request_url, |
| 86 bool overridable, | 86 bool overridable, |
| 87 const base::Callback<void(bool)>& callback, | 87 const base::Callback<void(bool)>& callback, |
| 88 bool* cancel_request) OVERRIDE; | 88 bool* cancel_request) OVERRIDE; |
| 89 virtual void SelectClientCertificate( | 89 virtual void SelectClientCertificate( |
| 90 int render_process_id, | 90 int render_process_id, |
| 91 int render_view_id, | 91 int render_view_id, |
| 92 SSLClientAuthHandler* handler) OVERRIDE; | 92 const net::HttpNetworkSession* network_session, |
| 93 net::SSLCertRequestInfo* cert_request_info, |
| 94 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
| 93 virtual void AddNewCertificate( | 95 virtual void AddNewCertificate( |
| 94 net::URLRequest* request, | 96 net::URLRequest* request, |
| 95 net::X509Certificate* cert, | 97 net::X509Certificate* cert, |
| 96 int render_process_id, | 98 int render_process_id, |
| 97 int render_view_id) OVERRIDE; | 99 int render_view_id) OVERRIDE; |
| 98 virtual void RequestDesktopNotificationPermission( | 100 virtual void RequestDesktopNotificationPermission( |
| 99 const GURL& source_origin, | 101 const GURL& source_origin, |
| 100 int callback_context, | 102 int callback_context, |
| 101 int render_process_id, | 103 int render_process_id, |
| 102 int render_view_id) OVERRIDE; | 104 int render_view_id) OVERRIDE; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 #if defined(USE_NSS) | 151 #if defined(USE_NSS) |
| 150 virtual | 152 virtual |
| 151 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 153 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 152 const GURL& url) OVERRIDE; | 154 const GURL& url) OVERRIDE; |
| 153 #endif | 155 #endif |
| 154 }; | 156 }; |
| 155 | 157 |
| 156 } // namespace chrome | 158 } // namespace chrome |
| 157 | 159 |
| 158 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 160 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |