| 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 626 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
| 628 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 627 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
| 629 std::unique_ptr<InputHandlerManager> input_handler_manager_; | 628 std::unique_ptr<InputHandlerManager> input_handler_manager_; |
| 630 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 629 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
| 631 | 630 |
| 632 #if defined(OS_ANDROID) | 631 #if defined(OS_ANDROID) |
| 633 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; | 632 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; |
| 634 scoped_refptr<StreamTextureFactory> stream_texture_factory_; | 633 scoped_refptr<StreamTextureFactory> stream_texture_factory_; |
| 635 #endif | 634 #endif |
| 636 | 635 |
| 637 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; | |
| 638 | |
| 639 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; | 636 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; |
| 640 | 637 |
| 641 base::ObserverList<RenderThreadObserver> observers_; | 638 base::ObserverList<RenderThreadObserver> observers_; |
| 642 | 639 |
| 643 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; | 640 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; |
| 644 | 641 |
| 645 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 642 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 646 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 643 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 647 | 644 |
| 648 HistogramCustomizer histogram_customizer_; | 645 HistogramCustomizer histogram_customizer_; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 709 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 713 }; | 710 }; |
| 714 | 711 |
| 715 #if defined(COMPILER_MSVC) | 712 #if defined(COMPILER_MSVC) |
| 716 #pragma warning(pop) | 713 #pragma warning(pop) |
| 717 #endif | 714 #endif |
| 718 | 715 |
| 719 } // namespace content | 716 } // namespace content |
| 720 | 717 |
| 721 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 718 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |