| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 WebContentsViewDelegate* GetWebContentsViewDelegate( | 49 WebContentsViewDelegate* GetWebContentsViewDelegate( |
| 50 WebContents* web_contents) override; | 50 WebContents* web_contents) override; |
| 51 QuotaPermissionContext* CreateQuotaPermissionContext() override; | 51 QuotaPermissionContext* CreateQuotaPermissionContext() override; |
| 52 void GetQuotaSettings( | 52 void GetQuotaSettings( |
| 53 content::BrowserContext* context, | 53 content::BrowserContext* context, |
| 54 content::StoragePartition* partition, | 54 content::StoragePartition* partition, |
| 55 const storage::OptionalQuotaSettingsCallback& callback) override; | 55 const storage::OptionalQuotaSettingsCallback& callback) override; |
| 56 void SelectClientCertificate( | 56 void SelectClientCertificate( |
| 57 WebContents* web_contents, | 57 WebContents* web_contents, |
| 58 net::SSLCertRequestInfo* cert_request_info, | 58 net::SSLCertRequestInfo* cert_request_info, |
| 59 net::CertificateList client_certs, | 59 net::ClientCertIdentityList client_certs, |
| 60 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 60 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
| 61 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 61 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
| 62 override; | 62 override; |
| 63 net::NetLog* GetNetLog() override; | 63 net::NetLog* GetNetLog() override; |
| 64 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, | 64 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, |
| 65 const GURL& current_url, | 65 const GURL& current_url, |
| 66 const GURL& new_url) override; | 66 const GURL& new_url) override; |
| 67 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | 67 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; |
| 68 | 68 |
| 69 void OpenURL(BrowserContext* browser_context, | 69 void OpenURL(BrowserContext* browser_context, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 resource_dispatcher_host_delegate_; | 110 resource_dispatcher_host_delegate_; |
| 111 | 111 |
| 112 base::Closure select_client_certificate_callback_; | 112 base::Closure select_client_certificate_callback_; |
| 113 | 113 |
| 114 ShellBrowserMainParts* shell_browser_main_parts_; | 114 ShellBrowserMainParts* shell_browser_main_parts_; |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace content | 117 } // namespace content |
| 118 | 118 |
| 119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |