OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "content/public/browser/content_browser_client.h" | 10 #include "content/public/browser/content_browser_client.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 // Returns the single browser context for app_shell. | 37 // Returns the single browser context for app_shell. |
38 content::BrowserContext* GetBrowserContext(); | 38 content::BrowserContext* GetBrowserContext(); |
39 | 39 |
40 // content::ContentBrowserClient overrides. | 40 // content::ContentBrowserClient overrides. |
41 content::BrowserMainParts* CreateBrowserMainParts( | 41 content::BrowserMainParts* CreateBrowserMainParts( |
42 const content::MainFunctionParams& parameters) override; | 42 const content::MainFunctionParams& parameters) override; |
43 void RenderProcessWillLaunch(content::RenderProcessHost* host) override; | 43 void RenderProcessWillLaunch(content::RenderProcessHost* host) override; |
44 bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, | 44 bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, |
45 const GURL& effective_url) override; | 45 const GURL& effective_url) override; |
46 net::URLRequestContextGetter* CreateRequestContext( | |
47 content::BrowserContext* browser_context, | |
48 content::ProtocolHandlerMap* protocol_handlers, | |
49 content::URLRequestInterceptorScopedVector request_interceptors) override; | |
50 // TODO(jamescook): Quota management? | 46 // TODO(jamescook): Quota management? |
51 bool IsHandledURL(const GURL& url) override; | 47 bool IsHandledURL(const GURL& url) override; |
52 void SiteInstanceGotProcess(content::SiteInstance* site_instance) override; | 48 void SiteInstanceGotProcess(content::SiteInstance* site_instance) override; |
53 void SiteInstanceDeleting(content::SiteInstance* site_instance) override; | 49 void SiteInstanceDeleting(content::SiteInstance* site_instance) override; |
54 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, | 50 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, |
55 int child_process_id) override; | 51 int child_process_id) override; |
56 content::SpeechRecognitionManagerDelegate* | 52 content::SpeechRecognitionManagerDelegate* |
57 CreateSpeechRecognitionManagerDelegate() override; | 53 CreateSpeechRecognitionManagerDelegate() override; |
58 content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 54 content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
59 int plugin_process_id) override; | 55 int plugin_process_id) override; |
(...skipping 19 matching lines...) Expand all Loading... |
79 | 75 |
80 // Owned by ShellBrowserMainParts. | 76 // Owned by ShellBrowserMainParts. |
81 ShellBrowserMainDelegate* browser_main_delegate_; | 77 ShellBrowserMainDelegate* browser_main_delegate_; |
82 | 78 |
83 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); | 79 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); |
84 }; | 80 }; |
85 | 81 |
86 } // namespace extensions | 82 } // namespace extensions |
87 | 83 |
88 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 84 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |