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