| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 WebContentsViewDelegate* GetWebContentsViewDelegate( | 47 WebContentsViewDelegate* GetWebContentsViewDelegate( |
| 48 WebContents* web_contents) override; | 48 WebContents* web_contents) override; |
| 49 QuotaPermissionContext* CreateQuotaPermissionContext() override; | 49 QuotaPermissionContext* CreateQuotaPermissionContext() override; |
| 50 void GetQuotaSettings( | 50 void GetQuotaSettings( |
| 51 content::BrowserContext* context, | 51 content::BrowserContext* context, |
| 52 content::StoragePartition* partition, | 52 content::StoragePartition* partition, |
| 53 const storage::OptionalQuotaSettingsCallback& callback) override; | 53 const storage::OptionalQuotaSettingsCallback& callback) override; |
| 54 void SelectClientCertificate( | 54 void SelectClientCertificate( |
| 55 WebContents* web_contents, | 55 WebContents* web_contents, |
| 56 net::SSLCertRequestInfo* cert_request_info, | 56 net::SSLCertRequestInfo* cert_request_info, |
| 57 net::CertificateList client_certs, | |
| 58 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 57 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
| 59 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 58 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
| 60 override; | 59 override; |
| 61 net::NetLog* GetNetLog() override; | 60 net::NetLog* GetNetLog() override; |
| 62 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, | 61 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, |
| 63 const GURL& current_url, | 62 const GURL& current_url, |
| 64 const GURL& new_url) override; | 63 const GURL& new_url) override; |
| 65 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | 64 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; |
| 66 | 65 |
| 67 void OpenURL(BrowserContext* browser_context, | 66 void OpenURL(BrowserContext* browser_context, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 resource_dispatcher_host_delegate_; | 107 resource_dispatcher_host_delegate_; |
| 109 | 108 |
| 110 base::Closure select_client_certificate_callback_; | 109 base::Closure select_client_certificate_callback_; |
| 111 | 110 |
| 112 ShellBrowserMainParts* shell_browser_main_parts_; | 111 ShellBrowserMainParts* shell_browser_main_parts_; |
| 113 }; | 112 }; |
| 114 | 113 |
| 115 } // namespace content | 114 } // namespace content |
| 116 | 115 |
| 117 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 116 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |