| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 class RendererScheduler; | 79 class RendererScheduler; |
| 80 class WebThreadBase; | 80 class WebThreadBase; |
| 81 } | 81 } |
| 82 | 82 |
| 83 namespace v8 { | 83 namespace v8 { |
| 84 class Extension; | 84 class Extension; |
| 85 } | 85 } |
| 86 | 86 |
| 87 namespace content { | 87 namespace content { |
| 88 | 88 |
| 89 class AecDumpMessageFilter; |
| 89 class AppCacheDispatcher; | 90 class AppCacheDispatcher; |
| 90 class AecDumpMessageFilter; | |
| 91 class AudioInputMessageFilter; | 91 class AudioInputMessageFilter; |
| 92 class AudioMessageFilter; | 92 class AudioMessageFilter; |
| 93 class AudioOutputClient; |
| 93 class AudioRendererMixerManager; | 94 class AudioRendererMixerManager; |
| 94 class BlobMessageFilter; | 95 class BlobMessageFilter; |
| 95 class BluetoothMessageFilter; | 96 class BluetoothMessageFilter; |
| 96 class BrowserPluginManager; | 97 class BrowserPluginManager; |
| 97 class CacheStorageDispatcher; | 98 class CacheStorageDispatcher; |
| 98 class CompositorForwardingMessageFilter; | 99 class CompositorForwardingMessageFilter; |
| 99 class ContextProviderCommandBuffer; | 100 class ContextProviderCommandBuffer; |
| 100 class DBMessageFilter; | 101 class DBMessageFilter; |
| 101 class DevToolsAgentFilter; | 102 class DevToolsAgentFilter; |
| 102 class DomStorageDispatcher; | 103 class DomStorageDispatcher; |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 #endif | 628 #endif |
| 628 | 629 |
| 629 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; | 630 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; |
| 630 | 631 |
| 631 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; | 632 scoped_refptr<ContextProviderCommandBuffer> shared_main_thread_contexts_; |
| 632 | 633 |
| 633 base::ObserverList<RenderThreadObserver> observers_; | 634 base::ObserverList<RenderThreadObserver> observers_; |
| 634 | 635 |
| 635 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; | 636 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; |
| 636 | 637 |
| 638 scoped_refptr<content::AudioOutputClient> audio_output_client_; |
| 637 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 639 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 638 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 640 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 639 | 641 |
| 640 HistogramCustomizer histogram_customizer_; | 642 HistogramCustomizer histogram_customizer_; |
| 641 | 643 |
| 642 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 644 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 643 | 645 |
| 644 #if defined(ENABLE_WEBRTC) | 646 #if defined(ENABLE_WEBRTC) |
| 645 std::unique_ptr<WebRTCIdentityService> webrtc_identity_service_; | 647 std::unique_ptr<WebRTCIdentityService> webrtc_identity_service_; |
| 646 #endif | 648 #endif |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 705 }; | 707 }; |
| 706 | 708 |
| 707 #if defined(COMPILER_MSVC) | 709 #if defined(COMPILER_MSVC) |
| 708 #pragma warning(pop) | 710 #pragma warning(pop) |
| 709 #endif | 711 #endif |
| 710 | 712 |
| 711 } // namespace content | 713 } // namespace content |
| 712 | 714 |
| 713 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |