| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 class Extension; | 79 class Extension; |
| 80 } | 80 } |
| 81 | 81 |
| 82 namespace content { | 82 namespace content { |
| 83 | 83 |
| 84 class AppCacheDispatcher; | 84 class AppCacheDispatcher; |
| 85 class AecDumpMessageFilter; | 85 class AecDumpMessageFilter; |
| 86 class AudioInputMessageFilter; | 86 class AudioInputMessageFilter; |
| 87 class AudioMessageFilter; | 87 class AudioMessageFilter; |
| 88 class AudioRendererMixerManager; | 88 class AudioRendererMixerManager; |
| 89 class BlobMessageFilter; |
| 89 class BluetoothMessageFilter; | 90 class BluetoothMessageFilter; |
| 90 class BrowserPluginManager; | 91 class BrowserPluginManager; |
| 91 class CacheStorageDispatcher; | 92 class CacheStorageDispatcher; |
| 92 class CompositorForwardingMessageFilter; | 93 class CompositorForwardingMessageFilter; |
| 93 class ContextProviderCommandBuffer; | 94 class ContextProviderCommandBuffer; |
| 94 class DBMessageFilter; | 95 class DBMessageFilter; |
| 95 class DevToolsAgentFilter; | 96 class DevToolsAgentFilter; |
| 96 class DomStorageDispatcher; | 97 class DomStorageDispatcher; |
| 97 class EmbeddedWorkerDispatcher; | 98 class EmbeddedWorkerDispatcher; |
| 98 class GpuChannelHost; | 99 class GpuChannelHost; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; | 516 scoped_ptr<scheduler::RendererScheduler> renderer_scheduler_; |
| 516 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; | 517 scoped_ptr<RendererBlinkPlatformImpl> blink_platform_impl_; |
| 517 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; | 518 scoped_ptr<ResourceDispatchThrottler> resource_dispatch_throttler_; |
| 518 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; | 519 scoped_ptr<CacheStorageDispatcher> main_thread_cache_storage_dispatcher_; |
| 519 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 520 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
| 520 | 521 |
| 521 // Used on the render thread and deleted by WebKit at shutdown. | 522 // Used on the render thread and deleted by WebKit at shutdown. |
| 522 blink::WebMediaStreamCenter* media_stream_center_; | 523 blink::WebMediaStreamCenter* media_stream_center_; |
| 523 | 524 |
| 524 // Used on the renderer and IPC threads. | 525 // Used on the renderer and IPC threads. |
| 526 scoped_refptr<BlobMessageFilter> blob_message_filter_; |
| 525 scoped_refptr<DBMessageFilter> db_message_filter_; | 527 scoped_refptr<DBMessageFilter> db_message_filter_; |
| 526 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 528 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
| 527 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 529 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
| 528 scoped_refptr<MidiMessageFilter> midi_message_filter_; | 530 scoped_refptr<MidiMessageFilter> midi_message_filter_; |
| 529 #if defined(OS_ANDROID) | 531 #if defined(OS_ANDROID) |
| 530 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; | 532 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; |
| 531 #endif | 533 #endif |
| 532 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; | 534 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; |
| 533 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; | 535 scoped_ptr<V8SamplingProfiler> v8_sampling_profiler_; |
| 534 | 536 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 660 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 659 }; | 661 }; |
| 660 | 662 |
| 661 #if defined(COMPILER_MSVC) | 663 #if defined(COMPILER_MSVC) |
| 662 #pragma warning(pop) | 664 #pragma warning(pop) |
| 663 #endif | 665 #endif |
| 664 | 666 |
| 665 } // namespace content | 667 } // namespace content |
| 666 | 668 |
| 667 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 669 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |