| 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 SelectClientCertificate( | 52 void SelectClientCertificate( |
| 53 WebContents* web_contents, | 53 WebContents* web_contents, |
| 54 net::SSLCertRequestInfo* cert_request_info, | 54 net::SSLCertRequestInfo* cert_request_info, |
| 55 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 55 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
| 56 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 56 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
| 57 override; | 57 override; |
| 58 net::NetLog* GetNetLog() override; | 58 net::NetLog* GetNetLog() override; |
| 59 bool ShouldSwapProcessesForRedirect(ResourceContext* resource_context, | 59 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, |
| 60 const GURL& current_url, | 60 const GURL& current_url, |
| 61 const GURL& new_url) override; | 61 const GURL& new_url) override; |
| 62 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | 62 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; |
| 63 | 63 |
| 64 void OpenURL(BrowserContext* browser_context, | 64 void OpenURL(BrowserContext* browser_context, |
| 65 const OpenURLParams& params, | 65 const OpenURLParams& params, |
| 66 const base::Callback<void(WebContents*)>& callback) override; | 66 const base::Callback<void(WebContents*)>& callback) override; |
| 67 | 67 |
| 68 #if defined(OS_ANDROID) | 68 #if defined(OS_ANDROID) |
| 69 void GetAdditionalMappedFilesForChildProcess( | 69 void GetAdditionalMappedFilesForChildProcess( |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 resource_dispatcher_host_delegate_; | 111 resource_dispatcher_host_delegate_; |
| 112 | 112 |
| 113 base::Closure select_client_certificate_callback_; | 113 base::Closure select_client_certificate_callback_; |
| 114 | 114 |
| 115 ShellBrowserMainParts* shell_browser_main_parts_; | 115 ShellBrowserMainParts* shell_browser_main_parts_; |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace content | 118 } // namespace content |
| 119 | 119 |
| 120 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 120 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |