Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: cc/trees/layer_tree_settings.cc

Issue 2716453005: Aura Overlay Scrollbars appear when mouse hovers over scroller edge (Closed)
Patch Set: rename fade in to show Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/trees/layer_tree_settings.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "cc/trees/layer_tree_settings.h" 5 #include "cc/trees/layer_tree_settings.h"
6 6
7 #include "third_party/khronos/GLES2/gl2.h" 7 #include "third_party/khronos/GLES2/gl2.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
(...skipping 20 matching lines...) Expand all
31 other.using_synchronous_renderer_compositor && 31 other.using_synchronous_renderer_compositor &&
32 enable_latency_recovery == other.enable_latency_recovery && 32 enable_latency_recovery == other.enable_latency_recovery &&
33 can_use_lcd_text == other.can_use_lcd_text && 33 can_use_lcd_text == other.can_use_lcd_text &&
34 use_distance_field_text == other.use_distance_field_text && 34 use_distance_field_text == other.use_distance_field_text &&
35 gpu_rasterization_forced == other.gpu_rasterization_forced && 35 gpu_rasterization_forced == other.gpu_rasterization_forced &&
36 async_worker_context_enabled == other.async_worker_context_enabled && 36 async_worker_context_enabled == other.async_worker_context_enabled &&
37 gpu_rasterization_msaa_sample_count == 37 gpu_rasterization_msaa_sample_count ==
38 other.gpu_rasterization_msaa_sample_count && 38 other.gpu_rasterization_msaa_sample_count &&
39 create_low_res_tiling == other.create_low_res_tiling && 39 create_low_res_tiling == other.create_low_res_tiling &&
40 scrollbar_animator == other.scrollbar_animator && 40 scrollbar_animator == other.scrollbar_animator &&
41 scrollbar_fade_delay == other.scrollbar_fade_delay && 41 scrollbar_show_delay == other.scrollbar_show_delay &&
42 scrollbar_fade_resize_delay == other.scrollbar_fade_resize_delay && 42 scrollbar_fade_out_delay == other.scrollbar_fade_out_delay &&
43 scrollbar_fade_duration == other.scrollbar_fade_duration && 43 scrollbar_fade_out_resize_delay ==
44 other.scrollbar_fade_out_resize_delay &&
45 scrollbar_fade_out_duration == other.scrollbar_fade_out_duration &&
44 solid_color_scrollbar_color == other.solid_color_scrollbar_color && 46 solid_color_scrollbar_color == other.solid_color_scrollbar_color &&
45 timeout_and_draw_when_animation_checkerboards == 47 timeout_and_draw_when_animation_checkerboards ==
46 other.timeout_and_draw_when_animation_checkerboards && 48 other.timeout_and_draw_when_animation_checkerboards &&
47 layer_transforms_should_scale_layer_contents == 49 layer_transforms_should_scale_layer_contents ==
48 other.layer_transforms_should_scale_layer_contents && 50 other.layer_transforms_should_scale_layer_contents &&
49 layers_always_allowed_lcd_text == 51 layers_always_allowed_lcd_text ==
50 other.layers_always_allowed_lcd_text && 52 other.layers_always_allowed_lcd_text &&
51 minimum_contents_scale == other.minimum_contents_scale && 53 minimum_contents_scale == other.minimum_contents_scale &&
52 low_res_contents_scale_factor == other.low_res_contents_scale_factor && 54 low_res_contents_scale_factor == other.low_res_contents_scale_factor &&
53 top_controls_show_threshold == other.top_controls_show_threshold && 55 top_controls_show_threshold == other.top_controls_show_threshold &&
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 TileManagerSettings LayerTreeSettings::ToTileManagerSettings() const { 101 TileManagerSettings LayerTreeSettings::ToTileManagerSettings() const {
100 TileManagerSettings tile_manager_settings; 102 TileManagerSettings tile_manager_settings;
101 tile_manager_settings.use_partial_raster = use_partial_raster; 103 tile_manager_settings.use_partial_raster = use_partial_raster;
102 tile_manager_settings.check_tile_priority_inversion = 104 tile_manager_settings.check_tile_priority_inversion =
103 check_tile_priority_inversion; 105 check_tile_priority_inversion;
104 tile_manager_settings.enable_checker_imaging = enable_checker_imaging; 106 tile_manager_settings.enable_checker_imaging = enable_checker_imaging;
105 return tile_manager_settings; 107 return tile_manager_settings;
106 } 108 }
107 109
108 } // namespace cc 110 } // namespace cc
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_settings.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698