| 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 CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; | 96 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; |
| 97 virtual void OpenItem(const FilePath& path) OVERRIDE; | 97 virtual void OpenItem(const FilePath& path) OVERRIDE; |
| 98 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; | 98 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; |
| 99 virtual void AllowCertificateError( | 99 virtual void AllowCertificateError( |
| 100 int render_process_id, | 100 int render_process_id, |
| 101 int render_view_id, | 101 int render_view_id, |
| 102 int cert_error, | 102 int cert_error, |
| 103 const net::SSLInfo& ssl_info, | 103 const net::SSLInfo& ssl_info, |
| 104 const GURL& request_url, | 104 const GURL& request_url, |
| 105 bool overridable, | 105 bool overridable, |
| 106 bool strict_enforcement, |
| 106 const base::Callback<void(bool)>& callback, | 107 const base::Callback<void(bool)>& callback, |
| 107 bool* cancel_request) OVERRIDE; | 108 bool* cancel_request) OVERRIDE; |
| 108 virtual void SelectClientCertificate( | 109 virtual void SelectClientCertificate( |
| 109 int render_process_id, | 110 int render_process_id, |
| 110 int render_view_id, | 111 int render_view_id, |
| 111 const net::HttpNetworkSession* network_session, | 112 const net::HttpNetworkSession* network_session, |
| 112 net::SSLCertRequestInfo* cert_request_info, | 113 net::SSLCertRequestInfo* cert_request_info, |
| 113 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; | 114 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
| 114 virtual void AddNewCertificate( | 115 virtual void AddNewCertificate( |
| 115 net::URLRequest* request, | 116 net::URLRequest* request, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 private: | 190 private: |
| 190 scoped_ptr<ShellResourceDispatcherHostDelegate> | 191 scoped_ptr<ShellResourceDispatcherHostDelegate> |
| 191 resource_dispatcher_host_delegate_; | 192 resource_dispatcher_host_delegate_; |
| 192 | 193 |
| 193 ShellBrowserMainParts* shell_browser_main_parts_; | 194 ShellBrowserMainParts* shell_browser_main_parts_; |
| 194 }; | 195 }; |
| 195 | 196 |
| 196 } // namespace content | 197 } // namespace content |
| 197 | 198 |
| 198 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 199 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |