| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 // ContentBrowserClient overrides. | 33 // ContentBrowserClient overrides. |
| 34 BrowserMainParts* CreateBrowserMainParts( | 34 BrowserMainParts* CreateBrowserMainParts( |
| 35 const MainFunctionParams& parameters) override; | 35 const MainFunctionParams& parameters) override; |
| 36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context, | 36 bool DoesSiteRequireDedicatedProcess(BrowserContext* browser_context, |
| 37 const GURL& effective_site_url) override; | 37 const GURL& effective_site_url) override; |
| 38 bool IsHandledURL(const GURL& url) override; | 38 bool IsHandledURL(const GURL& url) override; |
| 39 void RegisterInProcessServices(StaticServiceMap* services) override; | 39 void RegisterInProcessServices(StaticServiceMap* services) override; |
| 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 base::StringPiece 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 SelectClientCertificate( | 50 void SelectClientCertificate( |
| 51 WebContents* web_contents, | 51 WebContents* web_contents, |
| 52 net::SSLCertRequestInfo* cert_request_info, | 52 net::SSLCertRequestInfo* cert_request_info, |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 resource_dispatcher_host_delegate_; | 109 resource_dispatcher_host_delegate_; |
| 110 | 110 |
| 111 base::Closure select_client_certificate_callback_; | 111 base::Closure select_client_certificate_callback_; |
| 112 | 112 |
| 113 ShellBrowserMainParts* shell_browser_main_parts_; | 113 ShellBrowserMainParts* shell_browser_main_parts_; |
| 114 }; | 114 }; |
| 115 | 115 |
| 116 } // namespace content | 116 } // namespace content |
| 117 | 117 |
| 118 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 118 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |