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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 class Extension; | 82 class Extension; |
83 } | 83 } |
84 | 84 |
85 namespace content { | 85 namespace content { |
86 | 86 |
87 class AppCacheDispatcher; | 87 class AppCacheDispatcher; |
88 class AecDumpMessageFilter; | 88 class AecDumpMessageFilter; |
89 class AudioInputMessageFilter; | 89 class AudioInputMessageFilter; |
90 class AudioMessageFilter; | 90 class AudioMessageFilter; |
91 class AudioRendererMixerManager; | 91 class AudioRendererMixerManager; |
| 92 class BlobMessageFilter; |
92 class BluetoothMessageFilter; | 93 class BluetoothMessageFilter; |
93 class BrowserPluginManager; | 94 class BrowserPluginManager; |
94 class CacheStorageDispatcher; | 95 class CacheStorageDispatcher; |
95 class CompositorForwardingMessageFilter; | 96 class CompositorForwardingMessageFilter; |
96 class ContextProviderCommandBuffer; | 97 class ContextProviderCommandBuffer; |
97 class DBMessageFilter; | 98 class DBMessageFilter; |
98 class DevToolsAgentFilter; | 99 class DevToolsAgentFilter; |
99 class DomStorageDispatcher; | 100 class DomStorageDispatcher; |
100 class EmbeddedWorkerDispatcher; | 101 class EmbeddedWorkerDispatcher; |
101 class GpuChannelHost; | 102 class GpuChannelHost; |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; | 521 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; |
521 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; | 522 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; |
522 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; | 523 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; |
523 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; | 524 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; |
524 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 525 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
525 | 526 |
526 // Used on the render thread and deleted by WebKit at shutdown. | 527 // Used on the render thread and deleted by WebKit at shutdown. |
527 blink::WebMediaStreamCenter* media_stream_center_; | 528 blink::WebMediaStreamCenter* media_stream_center_; |
528 | 529 |
529 // Used on the renderer and IPC threads. | 530 // Used on the renderer and IPC threads. |
| 531 scoped_refptr<BlobMessageFilter> blob_message_filter_; |
530 scoped_refptr<DBMessageFilter> db_message_filter_; | 532 scoped_refptr<DBMessageFilter> db_message_filter_; |
531 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 533 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
532 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 534 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
533 scoped_refptr<MidiMessageFilter> midi_message_filter_; | 535 scoped_refptr<MidiMessageFilter> midi_message_filter_; |
534 #if defined(OS_ANDROID) | 536 #if defined(OS_ANDROID) |
535 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; | 537 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; |
536 #endif | 538 #endif |
537 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; | 539 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; |
538 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; | 540 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; |
539 | 541 |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 700 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
699 }; | 701 }; |
700 | 702 |
701 #if defined(COMPILER_MSVC) | 703 #if defined(COMPILER_MSVC) |
702 #pragma warning(pop) | 704 #pragma warning(pop) |
703 #endif | 705 #endif |
704 | 706 |
705 } // namespace content | 707 } // namespace content |
706 | 708 |
707 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 709 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |