| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 BlobMessageFilter; |
| 95 class BluetoothMessageFilter; | |
| 96 class BrowserPluginManager; | 95 class BrowserPluginManager; |
| 97 class CacheStorageDispatcher; | 96 class CacheStorageDispatcher; |
| 98 class CompositorForwardingMessageFilter; | 97 class CompositorForwardingMessageFilter; |
| 99 class ContextProviderCommandBuffer; | 98 class ContextProviderCommandBuffer; |
| 100 class DBMessageFilter; | 99 class DBMessageFilter; |
| 101 class DevToolsAgentFilter; | 100 class DevToolsAgentFilter; |
| 102 class DomStorageDispatcher; | 101 class DomStorageDispatcher; |
| 103 class EmbeddedWorkerDispatcher; | 102 class EmbeddedWorkerDispatcher; |
| 104 class IndexedDBDispatcher; | 103 class IndexedDBDispatcher; |
| 105 class InputHandlerManager; | 104 class InputHandlerManager; |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 625 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
| 627 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 626 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
| 628 std::unique_ptr<InputHandlerManager> input_handler_manager_; | 627 std::unique_ptr<InputHandlerManager> input_handler_manager_; |
| 629 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 628 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
| 630 | 629 |
| 631 #if defined(OS_ANDROID) | 630 #if defined(OS_ANDROID) |
| 632 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; | 631 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; |
| 633 scoped_refptr<StreamTextureFactory> stream_texture_factory_; | 632 scoped_refptr<StreamTextureFactory> stream_texture_factory_; |
| 634 #endif | 633 #endif |
| 635 | 634 |
| 636 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; | |
| 637 | |
| 638 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; | 635 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; |
| 639 | 636 |
| 640 base::ObserverList<RenderThreadObserver> observers_; | 637 base::ObserverList<RenderThreadObserver> observers_; |
| 641 | 638 |
| 642 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; | 639 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; |
| 643 | 640 |
| 644 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 641 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 645 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 642 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 646 | 643 |
| 647 HistogramCustomizer histogram_customizer_; | 644 HistogramCustomizer histogram_customizer_; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 710 }; | 707 }; |
| 711 | 708 |
| 712 #if defined(COMPILER_MSVC) | 709 #if defined(COMPILER_MSVC) |
| 713 #pragma warning(pop) | 710 #pragma warning(pop) |
| 714 #endif | 711 #endif |
| 715 | 712 |
| 716 } // namespace content | 713 } // namespace content |
| 717 | 714 |
| 718 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |