| 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 namespace IPC { | 86 namespace IPC { |
| 87 class MessageFilter; | 87 class MessageFilter; |
| 88 } | 88 } |
| 89 | 89 |
| 90 namespace media { | 90 namespace media { |
| 91 class GpuVideoAcceleratorFactories; | 91 class GpuVideoAcceleratorFactories; |
| 92 } | 92 } |
| 93 | 93 |
| 94 namespace ui { | 94 namespace ui { |
| 95 class GpuService; | 95 class Gpu; |
| 96 } | 96 } |
| 97 | 97 |
| 98 namespace v8 { | 98 namespace v8 { |
| 99 class Extension; | 99 class Extension; |
| 100 } | 100 } |
| 101 | 101 |
| 102 namespace content { | 102 namespace content { |
| 103 | 103 |
| 104 class AppCacheDispatcher; | 104 class AppCacheDispatcher; |
| 105 class AecDumpMessageFilter; | 105 class AecDumpMessageFilter; |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 692 std::unique_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 693 | 693 |
| 694 HistogramCustomizer histogram_customizer_; | 694 HistogramCustomizer histogram_customizer_; |
| 695 | 695 |
| 696 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 696 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 697 | 697 |
| 698 std::unique_ptr<MemoryObserver> memory_observer_; | 698 std::unique_ptr<MemoryObserver> memory_observer_; |
| 699 std::unique_ptr<ChildMemoryCoordinatorImpl> memory_coordinator_; | 699 std::unique_ptr<ChildMemoryCoordinatorImpl> memory_coordinator_; |
| 700 | 700 |
| 701 #if defined(USE_AURA) | 701 #if defined(USE_AURA) |
| 702 std::unique_ptr<ui::GpuService> gpu_service_; | 702 std::unique_ptr<ui::Gpu> gpu_; |
| 703 #endif | 703 #endif |
| 704 | 704 |
| 705 scoped_refptr<base::SingleThreadTaskRunner> | 705 scoped_refptr<base::SingleThreadTaskRunner> |
| 706 main_thread_compositor_task_runner_; | 706 main_thread_compositor_task_runner_; |
| 707 | 707 |
| 708 // Compositor settings. | 708 // Compositor settings. |
| 709 bool is_gpu_rasterization_enabled_; | 709 bool is_gpu_rasterization_enabled_; |
| 710 bool is_gpu_rasterization_forced_; | 710 bool is_gpu_rasterization_forced_; |
| 711 bool is_async_worker_context_enabled_; | 711 bool is_async_worker_context_enabled_; |
| 712 int gpu_rasterization_msaa_sample_count_; | 712 int gpu_rasterization_msaa_sample_count_; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 768 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 769 }; | 769 }; |
| 770 | 770 |
| 771 #if defined(COMPILER_MSVC) | 771 #if defined(COMPILER_MSVC) |
| 772 #pragma warning(pop) | 772 #pragma warning(pop) |
| 773 #endif | 773 #endif |
| 774 | 774 |
| 775 } // namespace content | 775 } // namespace content |
| 776 | 776 |
| 777 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 777 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |