| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 class EmbeddedWorkerDispatcher; | 102 class EmbeddedWorkerDispatcher; |
| 103 class IndexedDBDispatcher; | 103 class IndexedDBDispatcher; |
| 104 class InputHandlerManager; | 104 class InputHandlerManager; |
| 105 class MediaStreamCenter; | 105 class MediaStreamCenter; |
| 106 class MemoryObserver; | 106 class MemoryObserver; |
| 107 class MidiMessageFilter; | 107 class MidiMessageFilter; |
| 108 class NetInfoDispatcher; | 108 class NetInfoDispatcher; |
| 109 class P2PSocketDispatcher; | 109 class P2PSocketDispatcher; |
| 110 class PeerConnectionDependencyFactory; | 110 class PeerConnectionDependencyFactory; |
| 111 class PeerConnectionTracker; | 111 class PeerConnectionTracker; |
| 112 class RasterWorkerPool; | 112 class CategorizedWorkerPool; |
| 113 class RenderThreadObserver; | 113 class RenderThreadObserver; |
| 114 class RendererBlinkPlatformImpl; | 114 class RendererBlinkPlatformImpl; |
| 115 class RendererDemuxerAndroid; | 115 class RendererDemuxerAndroid; |
| 116 class RendererGpuVideoAcceleratorFactories; | 116 class RendererGpuVideoAcceleratorFactories; |
| 117 class ResourceDispatchThrottler; | 117 class ResourceDispatchThrottler; |
| 118 class V8SamplingProfiler; | 118 class V8SamplingProfiler; |
| 119 class VideoCaptureImplManager; | 119 class VideoCaptureImplManager; |
| 120 class WebRTCIdentityService; | 120 class WebRTCIdentityService; |
| 121 | 121 |
| 122 #if defined(OS_ANDROID) | 122 #if defined(OS_ANDROID) |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 ScopedVector<content::RendererGpuVideoAcceleratorFactories> gpu_factories_; | 606 ScopedVector<content::RendererGpuVideoAcceleratorFactories> gpu_factories_; |
| 607 | 607 |
| 608 // Thread for running multimedia operations (e.g., video decoding). | 608 // Thread for running multimedia operations (e.g., video decoding). |
| 609 std::unique_ptr<base::Thread> media_thread_; | 609 std::unique_ptr<base::Thread> media_thread_; |
| 610 | 610 |
| 611 // Will point to appropriate task runner after initialization, | 611 // Will point to appropriate task runner after initialization, |
| 612 // regardless of whether |compositor_thread_| is overriden. | 612 // regardless of whether |compositor_thread_| is overriden. |
| 613 scoped_refptr<base::SingleThreadTaskRunner> compositor_task_runner_; | 613 scoped_refptr<base::SingleThreadTaskRunner> compositor_task_runner_; |
| 614 | 614 |
| 615 // Pool of workers used for raster operations (e.g., tile rasterization). | 615 // Pool of workers used for raster operations (e.g., tile rasterization). |
| 616 scoped_refptr<RasterWorkerPool> raster_worker_pool_; | 616 scoped_refptr<CategorizedWorkerPool> categorized_worker_pool_; |
| 617 | 617 |
| 618 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 618 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
| 619 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 619 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
| 620 std::unique_ptr<InputHandlerManager> input_handler_manager_; | 620 std::unique_ptr<InputHandlerManager> input_handler_manager_; |
| 621 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 621 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
| 622 | 622 |
| 623 #if defined(OS_ANDROID) | 623 #if defined(OS_ANDROID) |
| 624 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; | 624 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; |
| 625 scoped_refptr<StreamTextureFactory> stream_texture_factory_; | 625 scoped_refptr<StreamTextureFactory> stream_texture_factory_; |
| 626 #endif | 626 #endif |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 701 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 702 }; | 702 }; |
| 703 | 703 |
| 704 #if defined(COMPILER_MSVC) | 704 #if defined(COMPILER_MSVC) |
| 705 #pragma warning(pop) | 705 #pragma warning(pop) |
| 706 #endif | 706 #endif |
| 707 | 707 |
| 708 } // namespace content | 708 } // namespace content |
| 709 | 709 |
| 710 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 710 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |