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 CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
(...skipping 16 matching lines...) Expand all Loading... |
27 namespace metrics { | 27 namespace metrics { |
28 class MetricsService; | 28 class MetricsService; |
29 } | 29 } |
30 | 30 |
31 namespace net { | 31 namespace net { |
32 class URLRequestContextGetter; | 32 class URLRequestContextGetter; |
33 class X509Certificate; | 33 class X509Certificate; |
34 } | 34 } |
35 | 35 |
36 namespace service_manager { | 36 namespace service_manager { |
37 class InterfaceRegistry; | 37 class BinderRegistry; |
38 } | 38 } |
39 | 39 |
40 namespace chromecast { | 40 namespace chromecast { |
41 class CastService; | 41 class CastService; |
42 class CastWindowManager; | 42 class CastWindowManager; |
43 | 43 |
44 namespace media { | 44 namespace media { |
45 class MediaCapsImpl; | 45 class MediaCapsImpl; |
46 class MediaPipelineBackendFactory; | 46 class MediaPipelineBackendFactory; |
47 class MediaPipelineBackendManager; | 47 class MediaPipelineBackendManager; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 const GURL& target_url, | 157 const GURL& target_url, |
158 const content::Referrer& referrer, | 158 const content::Referrer& referrer, |
159 const std::string& frame_name, | 159 const std::string& frame_name, |
160 WindowOpenDisposition disposition, | 160 WindowOpenDisposition disposition, |
161 const blink::mojom::WindowFeatures& features, | 161 const blink::mojom::WindowFeatures& features, |
162 bool user_gesture, | 162 bool user_gesture, |
163 bool opener_suppressed, | 163 bool opener_suppressed, |
164 content::ResourceContext* context, | 164 content::ResourceContext* context, |
165 bool* no_javascript_access) override; | 165 bool* no_javascript_access) override; |
166 void ExposeInterfacesToRenderer( | 166 void ExposeInterfacesToRenderer( |
167 service_manager::InterfaceRegistry* registry, | 167 service_manager::BinderRegistry* registry, |
168 content::RenderProcessHost* render_process_host) override; | 168 content::RenderProcessHost* render_process_host) override; |
169 void RegisterInProcessServices(StaticServiceMap* services) override; | 169 void RegisterInProcessServices(StaticServiceMap* services) override; |
170 std::unique_ptr<base::Value> GetServiceManifestOverlay( | 170 std::unique_ptr<base::Value> GetServiceManifestOverlay( |
171 base::StringPiece service_name) override; | 171 base::StringPiece service_name) override; |
172 void GetAdditionalMappedFilesForChildProcess( | 172 void GetAdditionalMappedFilesForChildProcess( |
173 const base::CommandLine& command_line, | 173 const base::CommandLine& command_line, |
174 int child_process_id, | 174 int child_process_id, |
175 content::FileDescriptorInfo* mappings) override; | 175 content::FileDescriptorInfo* mappings) override; |
176 void GetAdditionalWebUISchemes( | 176 void GetAdditionalWebUISchemes( |
177 std::vector<std::string>* additional_schemes) override; | 177 std::vector<std::string>* additional_schemes) override; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 std::unique_ptr<media::MediaPipelineBackendFactory> | 212 std::unique_ptr<media::MediaPipelineBackendFactory> |
213 media_pipeline_backend_factory_; | 213 media_pipeline_backend_factory_; |
214 | 214 |
215 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 215 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
216 }; | 216 }; |
217 | 217 |
218 } // namespace shell | 218 } // namespace shell |
219 } // namespace chromecast | 219 } // namespace chromecast |
220 | 220 |
221 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 221 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |