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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 class MidiMessageFilter; | 102 class MidiMessageFilter; |
103 class NetInfoDispatcher; | 103 class NetInfoDispatcher; |
104 class P2PSocketDispatcher; | 104 class P2PSocketDispatcher; |
105 class PeerConnectionDependencyFactory; | 105 class PeerConnectionDependencyFactory; |
106 class PeerConnectionTracker; | 106 class PeerConnectionTracker; |
107 class RasterWorkerPool; | 107 class RasterWorkerPool; |
108 class RenderProcessObserver; | 108 class RenderProcessObserver; |
109 class RendererBlinkPlatformImpl; | 109 class RendererBlinkPlatformImpl; |
110 class RendererDemuxerAndroid; | 110 class RendererDemuxerAndroid; |
111 class ResourceDispatchThrottler; | 111 class ResourceDispatchThrottler; |
| 112 class ResourceSchedulingFilter; |
112 class V8SamplingProfiler; | 113 class V8SamplingProfiler; |
113 class VideoCaptureImplManager; | 114 class VideoCaptureImplManager; |
114 class WebGraphicsContext3DCommandBufferImpl; | 115 class WebGraphicsContext3DCommandBufferImpl; |
115 class WebRTCIdentityService; | 116 class WebRTCIdentityService; |
116 | 117 |
117 #if defined(COMPILER_MSVC) | 118 #if defined(COMPILER_MSVC) |
118 // See explanation for other RenderViewHostImpl which is the same issue. | 119 // See explanation for other RenderViewHostImpl which is the same issue. |
119 #pragma warning(push) | 120 #pragma warning(push) |
120 #pragma warning(disable: 4250) | 121 #pragma warning(disable: 4250) |
121 #endif | 122 #endif |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 | 609 |
609 #if defined(ENABLE_WEBRTC) | 610 #if defined(ENABLE_WEBRTC) |
610 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; | 611 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; |
611 #endif | 612 #endif |
612 | 613 |
613 scoped_ptr<MemoryObserver> memory_observer_; | 614 scoped_ptr<MemoryObserver> memory_observer_; |
614 | 615 |
615 scoped_refptr<base::SingleThreadTaskRunner> | 616 scoped_refptr<base::SingleThreadTaskRunner> |
616 main_thread_compositor_task_runner_; | 617 main_thread_compositor_task_runner_; |
617 | 618 |
| 619 scoped_refptr<ResourceSchedulingFilter> resource_scheduling_filter_; |
| 620 |
618 // Compositor settings. | 621 // Compositor settings. |
619 bool is_gpu_rasterization_enabled_; | 622 bool is_gpu_rasterization_enabled_; |
620 bool is_gpu_rasterization_forced_; | 623 bool is_gpu_rasterization_forced_; |
621 int gpu_rasterization_msaa_sample_count_; | 624 int gpu_rasterization_msaa_sample_count_; |
622 bool is_lcd_text_enabled_; | 625 bool is_lcd_text_enabled_; |
623 bool is_distance_field_text_enabled_; | 626 bool is_distance_field_text_enabled_; |
624 bool is_zero_copy_enabled_; | 627 bool is_zero_copy_enabled_; |
625 bool is_one_copy_enabled_; | 628 bool is_one_copy_enabled_; |
626 bool is_persistent_gpu_memory_buffer_enabled_; | 629 bool is_persistent_gpu_memory_buffer_enabled_; |
627 bool is_elastic_overscroll_enabled_; | 630 bool is_elastic_overscroll_enabled_; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 666 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
664 }; | 667 }; |
665 | 668 |
666 #if defined(COMPILER_MSVC) | 669 #if defined(COMPILER_MSVC) |
667 #pragma warning(pop) | 670 #pragma warning(pop) |
668 #endif | 671 #endif |
669 | 672 |
670 } // namespace content | 673 } // namespace content |
671 | 674 |
672 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 675 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |