| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 int child_process_id, | 275 int child_process_id, |
| 276 content::FileDescriptorInfo* mappings) override; | 276 content::FileDescriptorInfo* mappings) override; |
| 277 #endif // defined(OS_POSIX) && !defined(OS_MACOSX) | 277 #endif // defined(OS_POSIX) && !defined(OS_MACOSX) |
| 278 #if defined(OS_WIN) | 278 #if defined(OS_WIN) |
| 279 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; | 279 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; |
| 280 base::string16 GetAppContainerSidForSandboxType( | 280 base::string16 GetAppContainerSidForSandboxType( |
| 281 int sandbox_type) const override; | 281 int sandbox_type) const override; |
| 282 #endif | 282 #endif |
| 283 void ExposeInterfacesToRenderer( | 283 void ExposeInterfacesToRenderer( |
| 284 service_manager::BinderRegistry* registry, | 284 service_manager::BinderRegistry* registry, |
| 285 content::AssociatedInterfaceRegistry* associated_registry, |
| 285 content::RenderProcessHost* render_process_host) override; | 286 content::RenderProcessHost* render_process_host) override; |
| 286 void ExposeInterfacesToMediaService( | 287 void ExposeInterfacesToMediaService( |
| 287 service_manager::InterfaceRegistry* registry, | 288 service_manager::InterfaceRegistry* registry, |
| 288 content::RenderFrameHost* render_frame_host) override; | 289 content::RenderFrameHost* render_frame_host) override; |
| 289 void RegisterRenderFrameMojoInterfaces( | 290 void RegisterRenderFrameMojoInterfaces( |
| 290 service_manager::InterfaceRegistry* registry, | 291 service_manager::InterfaceRegistry* registry, |
| 291 content::RenderFrameHost* render_frame_host) override; | 292 content::RenderFrameHost* render_frame_host) override; |
| 292 void BindInterfaceRequest( | 293 void BindInterfaceRequest( |
| 293 const service_manager::ServiceInfo& source_info, | 294 const service_manager::ServiceInfo& source_info, |
| 294 const std::string& interface_name, | 295 const std::string& interface_name, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 385 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 385 | 386 |
| 386 service_manager::BinderRegistry gpu_binder_registry_; | 387 service_manager::BinderRegistry gpu_binder_registry_; |
| 387 | 388 |
| 388 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 389 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 389 | 390 |
| 390 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 391 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 391 }; | 392 }; |
| 392 | 393 |
| 393 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 394 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |