| 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 25 matching lines...) Expand all Loading... |
| 36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context, | 36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context, |
| 37 const GURL& effective_url) override; | 37 const GURL& effective_url) override; |
| 38 bool IsHandledURL(const GURL& url) override; | 38 bool IsHandledURL(const GURL& url) override; |
| 39 void RegisterInProcessMojoApplications( | 39 void RegisterInProcessMojoApplications( |
| 40 StaticMojoApplicationMap* apps) override; | 40 StaticMojoApplicationMap* apps) override; |
| 41 void RegisterOutOfProcessMojoApplications( | 41 void RegisterOutOfProcessMojoApplications( |
| 42 OutOfProcessMojoApplicationMap* apps) override; | 42 OutOfProcessMojoApplicationMap* apps) override; |
| 43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, | 43 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, |
| 44 int child_process_id) override; | 44 int child_process_id) override; |
| 45 void ResourceDispatcherHostCreated() override; | 45 void ResourceDispatcherHostCreated() override; |
| 46 GeolocationDelegate* CreateGeolocationDelegate() override; | |
| 47 std::string GetDefaultDownloadName() override; | 46 std::string GetDefaultDownloadName() override; |
| 48 WebContentsViewDelegate* GetWebContentsViewDelegate( | 47 WebContentsViewDelegate* GetWebContentsViewDelegate( |
| 49 WebContents* web_contents) override; | 48 WebContents* web_contents) override; |
| 50 QuotaPermissionContext* CreateQuotaPermissionContext() override; | 49 QuotaPermissionContext* CreateQuotaPermissionContext() override; |
| 51 void SelectClientCertificate( | 50 void SelectClientCertificate( |
| 52 WebContents* web_contents, | 51 WebContents* web_contents, |
| 53 net::SSLCertRequestInfo* cert_request_info, | 52 net::SSLCertRequestInfo* cert_request_info, |
| 54 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 53 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
| 55 | 54 |
| 56 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 55 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 resource_dispatcher_host_delegate_; | 110 resource_dispatcher_host_delegate_; |
| 112 | 111 |
| 113 base::Closure select_client_certificate_callback_; | 112 base::Closure select_client_certificate_callback_; |
| 114 | 113 |
| 115 ShellBrowserMainParts* shell_browser_main_parts_; | 114 ShellBrowserMainParts* shell_browser_main_parts_; |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace content | 117 } // namespace content |
| 119 | 118 |
| 120 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |