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 17 matching lines...) Loading... |
28 #include "content/browser/renderer_host/offscreen_canvas_provider_impl.h" | 28 #include "content/browser/renderer_host/offscreen_canvas_provider_impl.h" |
29 #include "content/browser/webrtc/webrtc_eventlog_host.h" | 29 #include "content/browser/webrtc/webrtc_eventlog_host.h" |
30 #include "content/common/associated_interface_registry_impl.h" | 30 #include "content/common/associated_interface_registry_impl.h" |
31 #include "content/common/associated_interfaces.mojom.h" | 31 #include "content/common/associated_interfaces.mojom.h" |
32 #include "content/common/content_export.h" | 32 #include "content/common/content_export.h" |
33 #include "content/common/indexed_db/indexed_db.mojom.h" | 33 #include "content/common/indexed_db/indexed_db.mojom.h" |
34 #include "content/common/media/renderer_audio_output_stream_factory.mojom.h" | 34 #include "content/common/media/renderer_audio_output_stream_factory.mojom.h" |
35 #include "content/common/renderer.mojom.h" | 35 #include "content/common/renderer.mojom.h" |
36 #include "content/common/renderer_host.mojom.h" | 36 #include "content/common/renderer_host.mojom.h" |
37 #include "content/common/storage_partition_service.mojom.h" | 37 #include "content/common/storage_partition_service.mojom.h" |
38 #include "content/common/url_loader_factory.mojom.h" | |
39 #include "content/public/browser/render_process_host.h" | 38 #include "content/public/browser/render_process_host.h" |
40 #include "content/public/common/service_manager_connection.h" | 39 #include "content/public/common/service_manager_connection.h" |
| 40 #include "content/public/common/url_loader_factory.mojom.h" |
41 #include "ipc/ipc_channel_proxy.h" | 41 #include "ipc/ipc_channel_proxy.h" |
42 #include "ipc/ipc_platform_file.h" | 42 #include "ipc/ipc_platform_file.h" |
43 #include "media/media_features.h" | 43 #include "media/media_features.h" |
44 #include "mojo/edk/embedder/outgoing_broker_client_invitation.h" | 44 #include "mojo/edk/embedder/outgoing_broker_client_invitation.h" |
45 #include "mojo/public/cpp/bindings/associated_binding.h" | 45 #include "mojo/public/cpp/bindings/associated_binding.h" |
46 #include "mojo/public/cpp/bindings/associated_binding_set.h" | 46 #include "mojo/public/cpp/bindings/associated_binding_set.h" |
47 #include "mojo/public/cpp/bindings/interface_ptr.h" | 47 #include "mojo/public/cpp/bindings/interface_ptr.h" |
48 #include "services/service_manager/public/cpp/binder_registry.h" | 48 #include "services/service_manager/public/cpp/binder_registry.h" |
49 #include "services/service_manager/public/interfaces/service.mojom.h" | 49 #include "services/service_manager/public/interfaces/service.mojom.h" |
50 #include "services/ui/public/interfaces/gpu.mojom.h" | 50 #include "services/ui/public/interfaces/gpu.mojom.h" |
(...skipping 662 matching lines...) Loading... |
713 FrameSinkProviderImpl frame_sink_provider_; | 713 FrameSinkProviderImpl frame_sink_provider_; |
714 | 714 |
715 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 715 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
716 | 716 |
717 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 717 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
718 }; | 718 }; |
719 | 719 |
720 } // namespace content | 720 } // namespace content |
721 | 721 |
722 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 722 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |