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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 int render_process_id, | 156 int render_process_id, |
157 int render_view_id, | 157 int render_view_id, |
158 int cert_error, | 158 int cert_error, |
159 const net::SSLInfo& ssl_info, | 159 const net::SSLInfo& ssl_info, |
160 const GURL& request_url, | 160 const GURL& request_url, |
161 ResourceType::Type resource_type, | 161 ResourceType::Type resource_type, |
162 bool overridable, | 162 bool overridable, |
163 bool strict_enforcement, | 163 bool strict_enforcement, |
164 const base::Callback<void(bool)>& callback, | 164 const base::Callback<void(bool)>& callback, |
165 content::CertificateRequestResultType* request) OVERRIDE; | 165 content::CertificateRequestResultType* request) OVERRIDE; |
| 166 virtual scoped_ptr<net::ClientCertStore> GetClientCertStore( |
| 167 content::ResourceContext* context) OVERRIDE; |
166 virtual void SelectClientCertificate( | 168 virtual void SelectClientCertificate( |
167 int render_process_id, | 169 int render_process_id, |
168 int render_view_id, | 170 int render_view_id, |
169 const net::HttpNetworkSession* network_session, | 171 const net::HttpNetworkSession* network_session, |
170 net::SSLCertRequestInfo* cert_request_info, | 172 net::SSLCertRequestInfo* cert_request_info, |
171 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; | 173 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
172 virtual void AddCertificate( | 174 virtual void AddCertificate( |
173 net::URLRequest* request, | 175 net::URLRequest* request, |
174 net::CertificateMimeType cert_type, | 176 net::CertificateMimeType cert_type, |
175 const void* cert_data, | 177 const void* cert_data, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 #endif | 283 #endif |
282 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 284 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
283 permissions_policy_delegate_; | 285 permissions_policy_delegate_; |
284 | 286 |
285 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 287 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
286 }; | 288 }; |
287 | 289 |
288 } // namespace chrome | 290 } // namespace chrome |
289 | 291 |
290 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 292 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |