| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 virtual void OpenItem(const FilePath& path) OVERRIDE; | 78 virtual void OpenItem(const FilePath& path) OVERRIDE; |
| 79 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; | 79 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; |
| 80 virtual void AllowCertificateError( | 80 virtual void AllowCertificateError( |
| 81 SSLCertErrorHandler* handler, | 81 SSLCertErrorHandler* handler, |
| 82 bool overridable, | 82 bool overridable, |
| 83 const base::Callback<void(SSLCertErrorHandler*, bool)>& callback) | 83 const base::Callback<void(SSLCertErrorHandler*, bool)>& callback) |
| 84 OVERRIDE; | 84 OVERRIDE; |
| 85 virtual void SelectClientCertificate( | 85 virtual void SelectClientCertificate( |
| 86 int render_process_id, | 86 int render_process_id, |
| 87 int render_view_id, | 87 int render_view_id, |
| 88 SSLClientAuthHandler* handler) OVERRIDE; | 88 const net::HttpNetworkSession* network_session, |
| 89 net::SSLCertRequestInfo* cert_request_info, |
| 90 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
| 89 virtual void AddNewCertificate( | 91 virtual void AddNewCertificate( |
| 90 net::URLRequest* request, | 92 net::URLRequest* request, |
| 91 net::X509Certificate* cert, | 93 net::X509Certificate* cert, |
| 92 int render_process_id, | 94 int render_process_id, |
| 93 int render_view_id) OVERRIDE; | 95 int render_view_id) OVERRIDE; |
| 94 virtual void RequestDesktopNotificationPermission( | 96 virtual void RequestDesktopNotificationPermission( |
| 95 const GURL& source_origin, | 97 const GURL& source_origin, |
| 96 int callback_context, | 98 int callback_context, |
| 97 int render_process_id, | 99 int render_process_id, |
| 98 int render_view_id) OVERRIDE; | 100 int render_view_id) OVERRIDE; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 #if defined(USE_NSS) | 147 #if defined(USE_NSS) |
| 146 virtual | 148 virtual |
| 147 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 149 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 148 const GURL& url) OVERRIDE; | 150 const GURL& url) OVERRIDE; |
| 149 #endif | 151 #endif |
| 150 }; | 152 }; |
| 151 | 153 |
| 152 } // namespace chrome | 154 } // namespace chrome |
| 153 | 155 |
| 154 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 156 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |