| 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 618 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
| 620 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 619 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
| 621 std::unique_ptr<InputHandlerManager> input_handler_manager_; | 620 std::unique_ptr<InputHandlerManager> input_handler_manager_; |
| 622 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 621 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
| 623 | 622 |
| 624 #if defined(OS_ANDROID) | 623 #if defined(OS_ANDROID) |
| 625 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; | 624 scoped_refptr<SynchronousCompositorFilter> sync_compositor_message_filter_; |
| 626 scoped_refptr<StreamTextureFactory> stream_texture_factory_; | 625 scoped_refptr<StreamTextureFactory> stream_texture_factory_; |
| 627 #endif | 626 #endif |
| 628 | 627 |
| 629 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; | |
| 630 | |
| 631 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; | 628 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; |
| 632 | 629 |
| 633 base::ObserverList<RenderThreadObserver> observers_; | 630 base::ObserverList<RenderThreadObserver> observers_; |
| 634 | 631 |
| 635 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; | 632 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; |
| 636 | 633 |
| 637 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 634 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 638 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 635 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 639 | 636 |
| 640 HistogramCustomizer histogram_customizer_; | 637 HistogramCustomizer histogram_customizer_; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 701 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 705 }; | 702 }; |
| 706 | 703 |
| 707 #if defined(COMPILER_MSVC) | 704 #if defined(COMPILER_MSVC) |
| 708 #pragma warning(pop) | 705 #pragma warning(pop) |
| 709 #endif | 706 #endif |
| 710 | 707 |
| 711 } // namespace content | 708 } // namespace content |
| 712 | 709 |
| 713 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 710 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |