| 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 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace media { | 24 namespace media { |
| 25 class BrowserCdmFactory; | 25 class BrowserCdmFactory; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace metrics { | 28 namespace metrics { |
| 29 class MetricsService; | 29 class MetricsService; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace shell { | 32 namespace service_manager { |
| 33 class InterfaceRegistry; | 33 class InterfaceRegistry; |
| 34 } | 34 } |
| 35 | 35 |
| 36 namespace chromecast { | 36 namespace chromecast { |
| 37 class CastService; | 37 class CastService; |
| 38 | 38 |
| 39 namespace media { | 39 namespace media { |
| 40 class MediaCapsImpl; | 40 class MediaCapsImpl; |
| 41 class MediaPipelineBackend; | 41 class MediaPipelineBackend; |
| 42 class MediaPipelineBackendManager; | 42 class MediaPipelineBackendManager; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 WindowOpenDisposition disposition, | 142 WindowOpenDisposition disposition, |
| 143 const blink::WebWindowFeatures& features, | 143 const blink::WebWindowFeatures& features, |
| 144 bool user_gesture, | 144 bool user_gesture, |
| 145 bool opener_suppressed, | 145 bool opener_suppressed, |
| 146 content::ResourceContext* context, | 146 content::ResourceContext* context, |
| 147 int render_process_id, | 147 int render_process_id, |
| 148 int opener_render_view_id, | 148 int opener_render_view_id, |
| 149 int opener_render_frame_id, | 149 int opener_render_frame_id, |
| 150 bool* no_javascript_access) override; | 150 bool* no_javascript_access) override; |
| 151 void ExposeInterfacesToRenderer( | 151 void ExposeInterfacesToRenderer( |
| 152 ::shell::InterfaceRegistry* registry, | 152 service_manager::InterfaceRegistry* registry, |
| 153 content::RenderProcessHost* render_process_host) override; | 153 content::RenderProcessHost* render_process_host) override; |
| 154 void RegisterInProcessServices(StaticServiceMap* services) override; | 154 void RegisterInProcessServices(StaticServiceMap* services) override; |
| 155 std::unique_ptr<base::Value> GetServiceManifestOverlay( | 155 std::unique_ptr<base::Value> GetServiceManifestOverlay( |
| 156 const std::string& service_name) override; | 156 const std::string& service_name) override; |
| 157 #if defined(OS_ANDROID) | 157 #if defined(OS_ANDROID) |
| 158 void GetAdditionalMappedFilesForChildProcess( | 158 void GetAdditionalMappedFilesForChildProcess( |
| 159 const base::CommandLine& command_line, | 159 const base::CommandLine& command_line, |
| 160 int child_process_id, | 160 int child_process_id, |
| 161 content::FileDescriptorInfo* mappings, | 161 content::FileDescriptorInfo* mappings, |
| 162 std::map<int, base::MemoryMappedFile::Region>* regions) override; | 162 std::map<int, base::MemoryMappedFile::Region>* regions) override; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 CastBrowserMainParts* cast_browser_main_parts_; | 204 CastBrowserMainParts* cast_browser_main_parts_; |
| 205 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; | 205 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; |
| 206 | 206 |
| 207 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 207 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 } // namespace shell | 210 } // namespace shell |
| 211 } // namespace chromecast | 211 } // namespace chromecast |
| 212 | 212 |
| 213 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 213 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |