| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 namespace IPC { | 73 namespace IPC { |
| 74 class MessageFilter; | 74 class MessageFilter; |
| 75 } | 75 } |
| 76 | 76 |
| 77 namespace media { | 77 namespace media { |
| 78 class AudioHardwareConfig; | 78 class AudioHardwareConfig; |
| 79 class GpuVideoAcceleratorFactories; | 79 class GpuVideoAcceleratorFactories; |
| 80 } | 80 } |
| 81 | 81 |
| 82 namespace memory_coordinator { | |
| 83 class ChildMemoryCoordinatorImpl; | |
| 84 } | |
| 85 | |
| 86 namespace scheduler { | 82 namespace scheduler { |
| 87 class WebThreadBase; | 83 class WebThreadBase; |
| 88 } | 84 } |
| 89 | 85 |
| 90 namespace v8 { | 86 namespace v8 { |
| 91 class Extension; | 87 class Extension; |
| 92 } | 88 } |
| 93 | 89 |
| 94 namespace content { | 90 namespace content { |
| 95 | 91 |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; | 636 scoped_refptr<ContextProviderCommandBuffer> shared_worker_context_provider_; |
| 641 | 637 |
| 642 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 638 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 643 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 639 std::unique_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 644 | 640 |
| 645 HistogramCustomizer histogram_customizer_; | 641 HistogramCustomizer histogram_customizer_; |
| 646 | 642 |
| 647 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 643 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 648 | 644 |
| 649 std::unique_ptr<MemoryObserver> memory_observer_; | 645 std::unique_ptr<MemoryObserver> memory_observer_; |
| 650 std::unique_ptr<memory_coordinator::ChildMemoryCoordinatorImpl> | |
| 651 memory_coordinator_; | |
| 652 | 646 |
| 653 scoped_refptr<base::SingleThreadTaskRunner> | 647 scoped_refptr<base::SingleThreadTaskRunner> |
| 654 main_thread_compositor_task_runner_; | 648 main_thread_compositor_task_runner_; |
| 655 | 649 |
| 656 // Compositor settings. | 650 // Compositor settings. |
| 657 bool is_gpu_rasterization_enabled_; | 651 bool is_gpu_rasterization_enabled_; |
| 658 bool is_gpu_rasterization_forced_; | 652 bool is_gpu_rasterization_forced_; |
| 659 bool is_async_worker_context_enabled_; | 653 bool is_async_worker_context_enabled_; |
| 660 int gpu_rasterization_msaa_sample_count_; | 654 int gpu_rasterization_msaa_sample_count_; |
| 661 bool is_lcd_text_enabled_; | 655 bool is_lcd_text_enabled_; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 699 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 706 }; | 700 }; |
| 707 | 701 |
| 708 #if defined(COMPILER_MSVC) | 702 #if defined(COMPILER_MSVC) |
| 709 #pragma warning(pop) | 703 #pragma warning(pop) |
| 710 #endif | 704 #endif |
| 711 | 705 |
| 712 } // namespace content | 706 } // namespace content |
| 713 | 707 |
| 714 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 708 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |