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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 bool is_gpu_rasterization_forced_; | 654 bool is_gpu_rasterization_forced_; |
655 int gpu_rasterization_msaa_sample_count_; | 655 int gpu_rasterization_msaa_sample_count_; |
656 bool is_lcd_text_enabled_; | 656 bool is_lcd_text_enabled_; |
657 bool is_distance_field_text_enabled_; | 657 bool is_distance_field_text_enabled_; |
658 bool is_zero_copy_enabled_; | 658 bool is_zero_copy_enabled_; |
659 bool is_one_copy_enabled_; | 659 bool is_one_copy_enabled_; |
660 bool is_gpu_memory_buffer_compositor_resources_enabled_; | 660 bool is_gpu_memory_buffer_compositor_resources_enabled_; |
661 bool is_partial_raster_enabled_; | 661 bool is_partial_raster_enabled_; |
662 bool is_elastic_overscroll_enabled_; | 662 bool is_elastic_overscroll_enabled_; |
663 std::vector<unsigned> use_image_texture_targets_; | 663 std::vector<unsigned> use_image_texture_targets_; |
| 664 std::vector<unsigned> use_video_frame_image_texture_targets_; |
664 bool are_image_decode_tasks_enabled_; | 665 bool are_image_decode_tasks_enabled_; |
665 bool is_threaded_animation_enabled_; | 666 bool is_threaded_animation_enabled_; |
666 | 667 |
667 class PendingRenderFrameConnect | 668 class PendingRenderFrameConnect |
668 : public base::RefCounted<PendingRenderFrameConnect> { | 669 : public base::RefCounted<PendingRenderFrameConnect> { |
669 public: | 670 public: |
670 PendingRenderFrameConnect( | 671 PendingRenderFrameConnect( |
671 int routing_id, | 672 int routing_id, |
672 mojo::InterfaceRequest<mojo::ServiceProvider> services, | 673 mojo::InterfaceRequest<mojo::ServiceProvider> services, |
673 mojo::ServiceProviderPtr exposed_services); | 674 mojo::ServiceProviderPtr exposed_services); |
(...skipping 24 matching lines...) Expand all Loading... |
698 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 699 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
699 }; | 700 }; |
700 | 701 |
701 #if defined(COMPILER_MSVC) | 702 #if defined(COMPILER_MSVC) |
702 #pragma warning(pop) | 703 #pragma warning(pop) |
703 #endif | 704 #endif |
704 | 705 |
705 } // namespace content | 706 } // namespace content |
706 | 707 |
707 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 708 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |