| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 CC_TREES_LAYER_TREE_SETTINGS_H_ | 5 #ifndef CC_TREES_LAYER_TREE_SETTINGS_H_ |
| 6 #define CC_TREES_LAYER_TREE_SETTINGS_H_ | 6 #define CC_TREES_LAYER_TREE_SETTINGS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 float gpu_rasterization_skewport_target_time_in_seconds = 0.2f; | 43 float gpu_rasterization_skewport_target_time_in_seconds = 0.2f; |
| 44 bool create_low_res_tiling = false; | 44 bool create_low_res_tiling = false; |
| 45 bool use_stream_video_draw_quad = false; | 45 bool use_stream_video_draw_quad = false; |
| 46 | 46 |
| 47 enum ScrollbarAnimator { | 47 enum ScrollbarAnimator { |
| 48 NO_ANIMATOR, | 48 NO_ANIMATOR, |
| 49 ANDROID_OVERLAY, | 49 ANDROID_OVERLAY, |
| 50 AURA_OVERLAY, | 50 AURA_OVERLAY, |
| 51 }; | 51 }; |
| 52 ScrollbarAnimator scrollbar_animator = NO_ANIMATOR; | 52 ScrollbarAnimator scrollbar_animator = NO_ANIMATOR; |
| 53 base::TimeDelta scrollbar_show_delay; | 53 base::TimeDelta scrollbar_fade_delay; |
| 54 base::TimeDelta scrollbar_fade_out_delay; | |
| 55 base::TimeDelta scrollbar_fade_out_resize_delay; | 54 base::TimeDelta scrollbar_fade_out_resize_delay; |
| 56 base::TimeDelta scrollbar_fade_out_duration; | 55 base::TimeDelta scrollbar_fade_duration; |
| 57 base::TimeDelta scrollbar_thinning_duration; | 56 base::TimeDelta scrollbar_thinning_duration; |
| 58 SkColor solid_color_scrollbar_color = SK_ColorWHITE; | 57 SkColor solid_color_scrollbar_color = SK_ColorWHITE; |
| 59 bool timeout_and_draw_when_animation_checkerboards = true; | 58 bool timeout_and_draw_when_animation_checkerboards = true; |
| 60 bool layer_transforms_should_scale_layer_contents = false; | 59 bool layer_transforms_should_scale_layer_contents = false; |
| 61 bool layers_always_allowed_lcd_text = false; | 60 bool layers_always_allowed_lcd_text = false; |
| 62 float minimum_contents_scale = 0.0625f; | 61 float minimum_contents_scale = 0.0625f; |
| 63 float low_res_contents_scale_factor = 0.25f; | 62 float low_res_contents_scale_factor = 0.25f; |
| 64 float top_controls_show_threshold = 0.5f; | 63 float top_controls_show_threshold = 0.5f; |
| 65 float top_controls_hide_threshold = 0.5f; | 64 float top_controls_hide_threshold = 0.5f; |
| 66 double background_animation_rate = 1.0; | 65 double background_animation_rate = 1.0; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 bool enable_surface_synchronization = false; | 111 bool enable_surface_synchronization = false; |
| 113 | 112 |
| 114 // Indicates the case when a sub-frame gets its own LayerTree because it's | 113 // Indicates the case when a sub-frame gets its own LayerTree because it's |
| 115 // rendered in a different process from its ancestor frames. | 114 // rendered in a different process from its ancestor frames. |
| 116 bool is_layer_tree_for_subframe = false; | 115 bool is_layer_tree_for_subframe = false; |
| 117 }; | 116 }; |
| 118 | 117 |
| 119 } // namespace cc | 118 } // namespace cc |
| 120 | 119 |
| 121 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ | 120 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ |
| OLD | NEW |