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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 class Extension; | 83 class Extension; |
84 } | 84 } |
85 | 85 |
86 namespace content { | 86 namespace content { |
87 | 87 |
88 class AppCacheDispatcher; | 88 class AppCacheDispatcher; |
89 class AecDumpMessageFilter; | 89 class AecDumpMessageFilter; |
90 class AudioInputMessageFilter; | 90 class AudioInputMessageFilter; |
91 class AudioMessageFilter; | 91 class AudioMessageFilter; |
92 class AudioRendererMixerManager; | 92 class AudioRendererMixerManager; |
| 93 class BlobMessageFilter; |
93 class BluetoothMessageFilter; | 94 class BluetoothMessageFilter; |
94 class BrowserPluginManager; | 95 class BrowserPluginManager; |
95 class CacheStorageDispatcher; | 96 class CacheStorageDispatcher; |
96 class CompositorForwardingMessageFilter; | 97 class CompositorForwardingMessageFilter; |
97 class ContextProviderCommandBuffer; | 98 class ContextProviderCommandBuffer; |
98 class DBMessageFilter; | 99 class DBMessageFilter; |
99 class DevToolsAgentFilter; | 100 class DevToolsAgentFilter; |
100 class DomStorageDispatcher; | 101 class DomStorageDispatcher; |
101 class EmbeddedWorkerDispatcher; | 102 class EmbeddedWorkerDispatcher; |
102 class GpuChannelHost; | 103 class GpuChannelHost; |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; | 527 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; |
527 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; | 528 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; |
528 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; | 529 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; |
529 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; | 530 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; |
530 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 531 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
531 | 532 |
532 // Used on the render thread and deleted by WebKit at shutdown. | 533 // Used on the render thread and deleted by WebKit at shutdown. |
533 blink::WebMediaStreamCenter* media_stream_center_; | 534 blink::WebMediaStreamCenter* media_stream_center_; |
534 | 535 |
535 // Used on the renderer and IPC threads. | 536 // Used on the renderer and IPC threads. |
| 537 scoped_refptr<BlobMessageFilter> blob_message_filter_; |
536 scoped_refptr<DBMessageFilter> db_message_filter_; | 538 scoped_refptr<DBMessageFilter> db_message_filter_; |
537 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 539 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
538 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 540 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
539 scoped_refptr<MidiMessageFilter> midi_message_filter_; | 541 scoped_refptr<MidiMessageFilter> midi_message_filter_; |
540 #if defined(OS_ANDROID) | 542 #if defined(OS_ANDROID) |
541 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; | 543 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; |
542 #endif | 544 #endif |
543 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; | 545 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; |
544 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; | 546 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; |
545 | 547 |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
707 }; | 709 }; |
708 | 710 |
709 #if defined(COMPILER_MSVC) | 711 #if defined(COMPILER_MSVC) |
710 #pragma warning(pop) | 712 #pragma warning(pop) |
711 #endif | 713 #endif |
712 | 714 |
713 } // namespace content | 715 } // namespace content |
714 | 716 |
715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 717 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |