| 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/common/associated_interfaces.mojom.h" | 27 #include "content/common/associated_interfaces.mojom.h" |
| 28 #include "content/common/content_export.h" | 28 #include "content/common/content_export.h" |
| 29 #include "content/common/renderer.mojom.h" | 29 #include "content/common/renderer.mojom.h" |
| 30 #include "content/public/browser/render_process_host.h" | 30 #include "content/public/browser/render_process_host.h" |
| 31 #include "content/public/common/service_manager_connection.h" | 31 #include "content/public/common/service_manager_connection.h" |
| 32 #include "ipc/ipc_channel_proxy.h" | 32 #include "ipc/ipc_channel_proxy.h" |
| 33 #include "ipc/ipc_platform_file.h" | 33 #include "ipc/ipc_platform_file.h" |
| 34 #include "mojo/public/cpp/bindings/associated_binding.h" | 34 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 35 #include "mojo/public/cpp/bindings/associated_binding_set.h" | 35 #include "mojo/public/cpp/bindings/associated_binding_set.h" |
| 36 #include "mojo/public/cpp/bindings/interface_ptr.h" | 36 #include "mojo/public/cpp/bindings/interface_ptr.h" |
| 37 #include "services/shell/public/cpp/interface_registry.h" | 37 #include "services/service_manager/public/cpp/interface_registry.h" |
| 38 #include "services/shell/public/interfaces/service.mojom.h" | 38 #include "services/service_manager/public/interfaces/service.mojom.h" |
| 39 #include "ui/gfx/gpu_memory_buffer.h" | 39 #include "ui/gfx/gpu_memory_buffer.h" |
| 40 #include "ui/gl/gpu_switching_observer.h" | 40 #include "ui/gl/gpu_switching_observer.h" |
| 41 | 41 |
| 42 namespace base { | 42 namespace base { |
| 43 class CommandLine; | 43 class CommandLine; |
| 44 class MessageLoop; | 44 class MessageLoop; |
| 45 class SharedPersistentMemoryAllocator; | 45 class SharedPersistentMemoryAllocator; |
| 46 } | 46 } |
| 47 | 47 |
| 48 namespace gfx { | 48 namespace gfx { |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 instance_weak_factory_; | 585 instance_weak_factory_; |
| 586 | 586 |
| 587 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 587 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 588 | 588 |
| 589 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 589 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 590 }; | 590 }; |
| 591 | 591 |
| 592 } // namespace content | 592 } // namespace content |
| 593 | 593 |
| 594 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 594 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |