| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 const GURL& target_url, | 156 const GURL& target_url, |
| 157 const content::Referrer& referrer, | 157 const content::Referrer& referrer, |
| 158 const std::string& frame_name, | 158 const std::string& frame_name, |
| 159 WindowOpenDisposition disposition, | 159 WindowOpenDisposition disposition, |
| 160 const blink::mojom::WindowFeatures& features, | 160 const blink::mojom::WindowFeatures& features, |
| 161 bool user_gesture, | 161 bool user_gesture, |
| 162 bool opener_suppressed, | 162 bool opener_suppressed, |
| 163 bool* no_javascript_access) override; | 163 bool* no_javascript_access) override; |
| 164 void ExposeInterfacesToRenderer( | 164 void ExposeInterfacesToRenderer( |
| 165 service_manager::BinderRegistry* registry, | 165 service_manager::BinderRegistry* registry, |
| 166 content::AssociatedInterfaceRegistry* associated_registry, |
| 166 content::RenderProcessHost* render_process_host) override; | 167 content::RenderProcessHost* render_process_host) override; |
| 167 void RegisterInProcessServices(StaticServiceMap* services) override; | 168 void RegisterInProcessServices(StaticServiceMap* services) override; |
| 168 std::unique_ptr<base::Value> GetServiceManifestOverlay( | 169 std::unique_ptr<base::Value> GetServiceManifestOverlay( |
| 169 base::StringPiece service_name) override; | 170 base::StringPiece service_name) override; |
| 170 void GetAdditionalMappedFilesForChildProcess( | 171 void GetAdditionalMappedFilesForChildProcess( |
| 171 const base::CommandLine& command_line, | 172 const base::CommandLine& command_line, |
| 172 int child_process_id, | 173 int child_process_id, |
| 173 content::FileDescriptorInfo* mappings) override; | 174 content::FileDescriptorInfo* mappings) override; |
| 174 void GetAdditionalWebUISchemes( | 175 void GetAdditionalWebUISchemes( |
| 175 std::vector<std::string>* additional_schemes) override; | 176 std::vector<std::string>* additional_schemes) override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 std::unique_ptr<media::MediaPipelineBackendFactory> | 211 std::unique_ptr<media::MediaPipelineBackendFactory> |
| 211 media_pipeline_backend_factory_; | 212 media_pipeline_backend_factory_; |
| 212 | 213 |
| 213 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 214 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 214 }; | 215 }; |
| 215 | 216 |
| 216 } // namespace shell | 217 } // namespace shell |
| 217 } // namespace chromecast | 218 } // namespace chromecast |
| 218 | 219 |
| 219 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 220 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |