OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMECAST_SHELL_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | |
6 #define CHROMECAST_SHELL_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "content/public/browser/content_browser_client.h" | |
11 | |
12 namespace chromecast { | |
13 namespace shell { | |
14 | |
15 class CastBrowserMainParts; | |
16 class URLRequestContextFactory; | |
17 | |
18 class CastContentBrowserClient: public content::ContentBrowserClient { | |
19 public: | |
20 CastContentBrowserClient(); | |
21 virtual ~CastContentBrowserClient(); | |
22 | |
23 // content::ContentBrowserClient implementation: | |
24 virtual content::BrowserMainParts* CreateBrowserMainParts( | |
25 const content::MainFunctionParams& parameters) override; | |
26 virtual void RenderProcessWillLaunch( | |
27 content::RenderProcessHost* host) override; | |
28 virtual net::URLRequestContextGetter* CreateRequestContext( | |
29 content::BrowserContext* browser_context, | |
30 content::ProtocolHandlerMap* protocol_handlers, | |
31 content::URLRequestInterceptorScopedVector request_interceptors) | |
32 override; | |
33 virtual bool IsHandledURL(const GURL& url) override; | |
34 virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line, | |
35 int child_process_id) override; | |
36 virtual content::AccessTokenStore* CreateAccessTokenStore() override; | |
37 virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host, | |
38 const GURL& url, | |
39 content::WebPreferences* prefs) override; | |
40 virtual std::string GetApplicationLocale() override; | |
41 virtual void AllowCertificateError( | |
42 int render_process_id, | |
43 int render_view_id, | |
44 int cert_error, | |
45 const net::SSLInfo& ssl_info, | |
46 const GURL& request_url, | |
47 content::ResourceType resource_type, | |
48 bool overridable, | |
49 bool strict_enforcement, | |
50 bool expired_previous_decision, | |
51 const base::Callback<void(bool)>& callback, | |
52 content::CertificateRequestResultType* result) override; | |
53 virtual void SelectClientCertificate( | |
54 int render_process_id, | |
55 int render_frame_id, | |
56 const net::HttpNetworkSession* network_session, | |
57 net::SSLCertRequestInfo* cert_request_info, | |
58 const base::Callback<void(net::X509Certificate*)>& callback) override; | |
59 virtual bool CanCreateWindow( | |
60 const GURL& opener_url, | |
61 const GURL& opener_top_level_frame_url, | |
62 const GURL& source_origin, | |
63 WindowContainerType container_type, | |
64 const GURL& target_url, | |
65 const content::Referrer& referrer, | |
66 WindowOpenDisposition disposition, | |
67 const blink::WebWindowFeatures& features, | |
68 bool user_gesture, | |
69 bool opener_suppressed, | |
70 content::ResourceContext* context, | |
71 int render_process_id, | |
72 int opener_id, | |
73 bool* no_javascript_access) override; | |
74 virtual content::DevToolsManagerDelegate* | |
75 GetDevToolsManagerDelegate() override; | |
76 virtual void GetAdditionalMappedFilesForChildProcess( | |
77 const base::CommandLine& command_line, | |
78 int child_process_id, | |
79 content::FileDescriptorInfo* mappings) override; | |
80 #if defined(OS_ANDROID) && defined(VIDEO_HOLE) | |
81 virtual content::ExternalVideoSurfaceContainer* | |
82 OverrideCreateExternalVideoSurfaceContainer( | |
83 content::WebContents* web_contents) override; | |
84 #endif // defined(OS_ANDROID) && defined(VIDEO_HOLE) | |
85 | |
86 private: | |
87 net::X509Certificate* SelectClientCertificateOnIOThread( | |
88 GURL requesting_url); | |
89 | |
90 scoped_ptr<URLRequestContextFactory> url_request_context_factory_; | |
91 | |
92 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | |
93 }; | |
94 | |
95 } // namespace shell | |
96 } // namespace chromecast | |
97 | |
98 #endif // CHROMECAST_SHELL_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | |
OLD | NEW |