| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 class CompositorForwardingMessageFilter; | 96 class CompositorForwardingMessageFilter; |
| 97 class ContextProviderCommandBuffer; | 97 class ContextProviderCommandBuffer; |
| 98 class DBMessageFilter; | 98 class DBMessageFilter; |
| 99 class DevToolsAgentFilter; | 99 class DevToolsAgentFilter; |
| 100 class DomStorageDispatcher; | 100 class DomStorageDispatcher; |
| 101 class EmbeddedWorkerDispatcher; | 101 class EmbeddedWorkerDispatcher; |
| 102 class GpuChannelHost; | 102 class GpuChannelHost; |
| 103 class IndexedDBDispatcher; | 103 class IndexedDBDispatcher; |
| 104 class InputHandlerManager; | 104 class InputHandlerManager; |
| 105 class MediaStreamCenter; | 105 class MediaStreamCenter; |
| 106 class MemoryObserver; | |
| 107 class MidiMessageFilter; | 106 class MidiMessageFilter; |
| 108 class NetInfoDispatcher; | 107 class NetInfoDispatcher; |
| 109 class P2PSocketDispatcher; | 108 class P2PSocketDispatcher; |
| 110 class PeerConnectionDependencyFactory; | 109 class PeerConnectionDependencyFactory; |
| 111 class PeerConnectionTracker; | 110 class PeerConnectionTracker; |
| 112 class RasterWorkerPool; | 111 class RasterWorkerPool; |
| 113 class RenderProcessObserver; | 112 class RenderProcessObserver; |
| 114 class RendererBlinkPlatformImpl; | 113 class RendererBlinkPlatformImpl; |
| 115 class RendererDemuxerAndroid; | 114 class RendererDemuxerAndroid; |
| 116 class RendererGpuVideoAcceleratorFactories; | 115 class RendererGpuVideoAcceleratorFactories; |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 641 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 643 | 642 |
| 644 HistogramCustomizer histogram_customizer_; | 643 HistogramCustomizer histogram_customizer_; |
| 645 | 644 |
| 646 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 645 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 647 | 646 |
| 648 #if defined(ENABLE_WEBRTC) | 647 #if defined(ENABLE_WEBRTC) |
| 649 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; | 648 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; |
| 650 #endif | 649 #endif |
| 651 | 650 |
| 652 scoped_ptr<MemoryObserver> memory_observer_; | |
| 653 | |
| 654 scoped_refptr<base::SingleThreadTaskRunner> | 651 scoped_refptr<base::SingleThreadTaskRunner> |
| 655 main_thread_compositor_task_runner_; | 652 main_thread_compositor_task_runner_; |
| 656 | 653 |
| 657 // Compositor settings. | 654 // Compositor settings. |
| 658 bool is_gpu_rasterization_enabled_; | 655 bool is_gpu_rasterization_enabled_; |
| 659 bool is_gpu_rasterization_forced_; | 656 bool is_gpu_rasterization_forced_; |
| 660 int gpu_rasterization_msaa_sample_count_; | 657 int gpu_rasterization_msaa_sample_count_; |
| 661 bool is_lcd_text_enabled_; | 658 bool is_lcd_text_enabled_; |
| 662 bool is_distance_field_text_enabled_; | 659 bool is_distance_field_text_enabled_; |
| 663 bool is_zero_copy_enabled_; | 660 bool is_zero_copy_enabled_; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 703 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 707 }; | 704 }; |
| 708 | 705 |
| 709 #if defined(COMPILER_MSVC) | 706 #if defined(COMPILER_MSVC) |
| 710 #pragma warning(pop) | 707 #pragma warning(pop) |
| 711 #endif | 708 #endif |
| 712 | 709 |
| 713 } // namespace content | 710 } // namespace content |
| 714 | 711 |
| 715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 712 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |