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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 | 575 |
576 #if defined(ENABLE_WEBRTC) | 576 #if defined(ENABLE_WEBRTC) |
577 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; | 577 scoped_ptr<WebRTCIdentityService> webrtc_identity_service_; |
578 #endif | 578 #endif |
579 | 579 |
580 scoped_ptr<MemoryObserver> memory_observer_; | 580 scoped_ptr<MemoryObserver> memory_observer_; |
581 | 581 |
582 scoped_refptr<base::SingleThreadTaskRunner> | 582 scoped_refptr<base::SingleThreadTaskRunner> |
583 main_thread_compositor_task_runner_; | 583 main_thread_compositor_task_runner_; |
584 | 584 |
585 // Compositor settings | 585 // Compositor settings. |
586 bool is_gpu_rasterization_enabled_; | 586 bool is_gpu_rasterization_enabled_; |
587 bool is_gpu_rasterization_forced_; | 587 bool is_gpu_rasterization_forced_; |
588 bool is_impl_side_painting_enabled_; | 588 bool is_impl_side_painting_enabled_; |
589 bool is_lcd_text_enabled_; | 589 bool is_lcd_text_enabled_; |
590 bool is_distance_field_text_enabled_; | 590 bool is_distance_field_text_enabled_; |
591 bool is_zero_copy_enabled_; | 591 bool is_zero_copy_enabled_; |
592 bool is_one_copy_enabled_; | 592 bool is_one_copy_enabled_; |
593 unsigned use_image_texture_target_; | 593 unsigned use_image_texture_target_; |
594 | 594 |
595 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; | 595 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; |
596 | 596 |
597 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 597 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
598 }; | 598 }; |
599 | 599 |
600 } // namespace content | 600 } // namespace content |
601 | 601 |
602 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 602 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |