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 GetQuotaSettings( | 50 void GetQuotaSettings( |
51 content::BrowserContext* context, | 51 content::BrowserContext* context, |
52 content::StoragePartition* partition, | 52 content::StoragePartition* partition, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 resource_dispatcher_host_delegate_; | 113 resource_dispatcher_host_delegate_; |
114 | 114 |
115 base::Closure select_client_certificate_callback_; | 115 base::Closure select_client_certificate_callback_; |
116 | 116 |
117 ShellBrowserMainParts* shell_browser_main_parts_; | 117 ShellBrowserMainParts* shell_browser_main_parts_; |
118 }; | 118 }; |
119 | 119 |
120 } // namespace content | 120 } // namespace content |
121 | 121 |
122 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 122 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |