| 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_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "content/common/associated_interface_registry_impl.h" | 35 #include "content/common/associated_interface_registry_impl.h" |
| 36 #include "content/common/content_export.h" | 36 #include "content/common/content_export.h" |
| 37 #include "content/common/frame.mojom.h" | 37 #include "content/common/frame.mojom.h" |
| 38 #include "content/common/frame_replication_state.h" | 38 #include "content/common/frame_replication_state.h" |
| 39 #include "content/common/frame_sink_provider.mojom.h" | 39 #include "content/common/frame_sink_provider.mojom.h" |
| 40 #include "content/common/render_frame_message_filter.mojom.h" | 40 #include "content/common/render_frame_message_filter.mojom.h" |
| 41 #include "content/common/render_message_filter.mojom.h" | 41 #include "content/common/render_message_filter.mojom.h" |
| 42 #include "content/common/renderer.mojom.h" | 42 #include "content/common/renderer.mojom.h" |
| 43 #include "content/common/renderer_host.mojom.h" | 43 #include "content/common/renderer_host.mojom.h" |
| 44 #include "content/common/storage_partition_service.mojom.h" | 44 #include "content/common/storage_partition_service.mojom.h" |
| 45 #include "content/common/url_loader_factory.mojom.h" | 45 #include "content/public/common/url_loader_factory.mojom.h" |
| 46 #include "content/public/renderer/render_thread.h" | 46 #include "content/public/renderer/render_thread.h" |
| 47 #include "content/renderer/gpu/compositor_dependencies.h" | 47 #include "content/renderer/gpu/compositor_dependencies.h" |
| 48 #include "content/renderer/layout_test_dependencies.h" | 48 #include "content/renderer/layout_test_dependencies.h" |
| 49 #include "content/renderer/media/audio_ipc_factory.h" | 49 #include "content/renderer/media/audio_ipc_factory.h" |
| 50 #include "gpu/ipc/client/gpu_channel_host.h" | 50 #include "gpu/ipc/client/gpu_channel_host.h" |
| 51 #include "media/media_features.h" | 51 #include "media/media_features.h" |
| 52 #include "mojo/public/cpp/bindings/associated_binding.h" | 52 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 53 #include "mojo/public/cpp/bindings/binding.h" | 53 #include "mojo/public/cpp/bindings/binding.h" |
| 54 #include "mojo/public/cpp/bindings/thread_safe_interface_ptr.h" | 54 #include "mojo/public/cpp/bindings/thread_safe_interface_ptr.h" |
| 55 #include "net/base/network_change_notifier.h" | 55 #include "net/base/network_change_notifier.h" |
| (...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 815 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 816 }; | 816 }; |
| 817 | 817 |
| 818 #if defined(COMPILER_MSVC) | 818 #if defined(COMPILER_MSVC) |
| 819 #pragma warning(pop) | 819 #pragma warning(pop) |
| 820 #endif | 820 #endif |
| 821 | 821 |
| 822 } // namespace content | 822 } // namespace content |
| 823 | 823 |
| 824 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 824 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |