| 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
| 10 #include "cc/debug/layer_tree_debug_state.h" | 10 #include "cc/debug/layer_tree_debug_state.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 bool partial_swap_enabled; | 29 bool partial_swap_enabled; |
| 30 bool accelerated_animation_enabled; | 30 bool accelerated_animation_enabled; |
| 31 bool can_use_lcd_text; | 31 bool can_use_lcd_text; |
| 32 bool should_clear_root_render_pass; | 32 bool should_clear_root_render_pass; |
| 33 enum RasterizationSite { | 33 enum RasterizationSite { |
| 34 CpuRasterization, | 34 CpuRasterization, |
| 35 HybridRasterization, | 35 HybridRasterization, |
| 36 GpuRasterization, | 36 GpuRasterization, |
| 37 }; | 37 }; |
| 38 RasterizationSite rasterization_site; | 38 RasterizationSite rasterization_site; |
| 39 bool create_low_res_tiling; |
| 39 | 40 |
| 40 enum ScrollbarAnimator { | 41 enum ScrollbarAnimator { |
| 41 NoAnimator, | 42 NoAnimator, |
| 42 LinearFade, | 43 LinearFade, |
| 43 Thinning, | 44 Thinning, |
| 44 }; | 45 }; |
| 45 ScrollbarAnimator scrollbar_animator; | 46 ScrollbarAnimator scrollbar_animator; |
| 46 int scrollbar_linear_fade_delay_ms; | 47 int scrollbar_linear_fade_delay_ms; |
| 47 int scrollbar_linear_fade_length_ms; | 48 int scrollbar_linear_fade_length_ms; |
| 48 SkColor solid_color_scrollbar_color; | 49 SkColor solid_color_scrollbar_color; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 75 bool use_rgba_4444_textures; | 76 bool use_rgba_4444_textures; |
| 76 bool touch_hit_testing; | 77 bool touch_hit_testing; |
| 77 size_t texture_id_allocation_chunk_size; | 78 size_t texture_id_allocation_chunk_size; |
| 78 | 79 |
| 79 LayerTreeDebugState initial_debug_state; | 80 LayerTreeDebugState initial_debug_state; |
| 80 }; | 81 }; |
| 81 | 82 |
| 82 } // namespace cc | 83 } // namespace cc |
| 83 | 84 |
| 84 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ | 85 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ |
| OLD | NEW |