| 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 29 matching lines...) Expand all Loading... |
| 40 void RegisterOutOfProcessServices(OutOfProcessServiceMap* services) override; | 40 void RegisterOutOfProcessServices(OutOfProcessServiceMap* services) override; |
| 41 std::unique_ptr<base::Value> GetServiceManifestOverlay( | 41 std::unique_ptr<base::Value> GetServiceManifestOverlay( |
| 42 const std::string& name) override; | 42 const std::string& name) 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 std::string GetDefaultDownloadName() override; | 46 std::string GetDefaultDownloadName() override; |
| 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( | |
| 51 content::BrowserContext* context, | |
| 52 content::StoragePartition* partition, | |
| 53 const storage::OptionalQuotaSettingsCallback& callback) override; | |
| 54 void SelectClientCertificate( | 50 void SelectClientCertificate( |
| 55 WebContents* web_contents, | 51 WebContents* web_contents, |
| 56 net::SSLCertRequestInfo* cert_request_info, | 52 net::SSLCertRequestInfo* cert_request_info, |
| 57 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 53 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
| 58 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 54 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
| 59 override; | 55 override; |
| 60 net::NetLog* GetNetLog() override; | 56 net::NetLog* GetNetLog() override; |
| 61 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, | 57 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, |
| 62 const GURL& current_url, | 58 const GURL& current_url, |
| 63 const GURL& new_url) override; | 59 const GURL& new_url) override; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 resource_dispatcher_host_delegate_; | 109 resource_dispatcher_host_delegate_; |
| 114 | 110 |
| 115 base::Closure select_client_certificate_callback_; | 111 base::Closure select_client_certificate_callback_; |
| 116 | 112 |
| 117 ShellBrowserMainParts* shell_browser_main_parts_; | 113 ShellBrowserMainParts* shell_browser_main_parts_; |
| 118 }; | 114 }; |
| 119 | 115 |
| 120 } // namespace content | 116 } // namespace content |
| 121 | 117 |
| 122 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 118 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |