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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 class MemoryObserver; | 94 class MemoryObserver; |
95 class PeerConnectionDependencyFactory; | 95 class PeerConnectionDependencyFactory; |
96 class MidiMessageFilter; | 96 class MidiMessageFilter; |
97 class NetInfoDispatcher; | 97 class NetInfoDispatcher; |
98 class P2PSocketDispatcher; | 98 class P2PSocketDispatcher; |
99 class PeerConnectionTracker; | 99 class PeerConnectionTracker; |
100 class RenderProcessObserver; | 100 class RenderProcessObserver; |
101 class RendererBlinkPlatformImpl; | 101 class RendererBlinkPlatformImpl; |
102 class RendererDemuxerAndroid; | 102 class RendererDemuxerAndroid; |
103 class RendererScheduler; | 103 class RendererScheduler; |
104 class ResourceDispatchThrottler; | |
105 class ResourceSchedulingFilter; | 104 class ResourceSchedulingFilter; |
106 class V8SamplingProfiler; | 105 class V8SamplingProfiler; |
107 class VideoCaptureImplManager; | 106 class VideoCaptureImplManager; |
108 class WebGraphicsContext3DCommandBufferImpl; | 107 class WebGraphicsContext3DCommandBufferImpl; |
109 class WebRTCIdentityService; | 108 class WebRTCIdentityService; |
110 | 109 |
111 #if defined(COMPILER_MSVC) | 110 #if defined(COMPILER_MSVC) |
112 // See explanation for other RenderViewHostImpl which is the same issue. | 111 // See explanation for other RenderViewHostImpl which is the same issue. |
113 #pragma warning(push) | 112 #pragma warning(push) |
114 #pragma warning(disable: 4250) | 113 #pragma warning(disable: 4250) |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 const WorkerProcessMsg_CreateWorker_Params& params); | 469 const WorkerProcessMsg_CreateWorker_Params& params); |
471 | 470 |
472 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); | 471 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); |
473 | 472 |
474 // These objects live solely on the render thread. | 473 // These objects live solely on the render thread. |
475 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; | 474 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; |
476 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; | 475 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; |
477 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; | 476 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; |
478 scoped_ptr<RendererScheduler> renderer_scheduler_; | 477 scoped_ptr<RendererScheduler> renderer_scheduler_; |
479 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; | 478 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; |
480 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; | |
481 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 479 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
482 | 480 |
483 // Used on the render thread and deleted by WebKit at shutdown. | 481 // Used on the render thread and deleted by WebKit at shutdown. |
484 blink::WebMediaStreamCenter* media_stream_center_; | 482 blink::WebMediaStreamCenter* media_stream_center_; |
485 | 483 |
486 // Used on the renderer and IPC threads. | 484 // Used on the renderer and IPC threads. |
487 scoped_refptr<DBMessageFilter> db_message_filter_; | 485 scoped_refptr<DBMessageFilter> db_message_filter_; |
488 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 486 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
489 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 487 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
490 scoped_refptr<MidiMessageFilter> midi_message_filter_; | 488 scoped_refptr<MidiMessageFilter> midi_message_filter_; |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 626 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
629 }; | 627 }; |
630 | 628 |
631 #if defined(COMPILER_MSVC) | 629 #if defined(COMPILER_MSVC) |
632 #pragma warning(pop) | 630 #pragma warning(pop) |
633 #endif | 631 #endif |
634 | 632 |
635 } // namespace content | 633 } // namespace content |
636 | 634 |
637 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 635 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |