| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 int child_process_id, | 277 int child_process_id, |
| 278 content::FileDescriptorInfo* mappings) override; | 278 content::FileDescriptorInfo* mappings) override; |
| 279 #endif // defined(OS_POSIX) && !defined(OS_MACOSX) | 279 #endif // defined(OS_POSIX) && !defined(OS_MACOSX) |
| 280 #if defined(OS_WIN) | 280 #if defined(OS_WIN) |
| 281 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; | 281 bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override; |
| 282 base::string16 GetAppContainerSidForSandboxType( | 282 base::string16 GetAppContainerSidForSandboxType( |
| 283 int sandbox_type) const override; | 283 int sandbox_type) const override; |
| 284 #endif | 284 #endif |
| 285 void ExposeInterfacesToRenderer( | 285 void ExposeInterfacesToRenderer( |
| 286 service_manager::BinderRegistry* registry, | 286 service_manager::BinderRegistry* registry, |
| 287 content::AssociatedInterfaceRegistry* associated_registry, |
| 287 content::RenderProcessHost* render_process_host) override; | 288 content::RenderProcessHost* render_process_host) override; |
| 288 void ExposeInterfacesToMediaService( | 289 void ExposeInterfacesToMediaService( |
| 289 service_manager::InterfaceRegistry* registry, | 290 service_manager::InterfaceRegistry* registry, |
| 290 content::RenderFrameHost* render_frame_host) override; | 291 content::RenderFrameHost* render_frame_host) override; |
| 291 void RegisterRenderFrameMojoInterfaces( | 292 void RegisterRenderFrameMojoInterfaces( |
| 292 service_manager::InterfaceRegistry* registry, | 293 service_manager::InterfaceRegistry* registry, |
| 293 content::RenderFrameHost* render_frame_host) override; | 294 content::RenderFrameHost* render_frame_host) override; |
| 294 void BindInterfaceRequest( | 295 void BindInterfaceRequest( |
| 295 const service_manager::ServiceInfo& source_info, | 296 const service_manager::ServiceInfo& source_info, |
| 296 const std::string& interface_name, | 297 const std::string& interface_name, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 387 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 387 | 388 |
| 388 service_manager::BinderRegistry gpu_binder_registry_; | 389 service_manager::BinderRegistry gpu_binder_registry_; |
| 389 | 390 |
| 390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 391 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 391 | 392 |
| 392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 393 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 393 }; | 394 }; |
| 394 | 395 |
| 395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 396 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |