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

Side by Side Diff: cc/layers/layer_impl.h

Issue 2453553003: Disable overlay scrollbars in Blink when hidden by the compositor. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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/layers/layer_client.h ('k') | cc/layers/layer_impl.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 #ifndef CC_LAYERS_LAYER_IMPL_H_ 5 #ifndef CC_LAYERS_LAYER_IMPL_H_
6 #define CC_LAYERS_LAYER_IMPL_H_ 6 #define CC_LAYERS_LAYER_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> 572 std::unique_ptr<base::trace_event::ConvertableToTraceFormat>
573 owned_debug_info_; 573 owned_debug_info_;
574 base::trace_event::ConvertableToTraceFormat* debug_info_; 574 base::trace_event::ConvertableToTraceFormat* debug_info_;
575 std::unique_ptr<RenderSurfaceImpl> render_surface_; 575 std::unique_ptr<RenderSurfaceImpl> render_surface_;
576 gfx::Size preferred_raster_bounds_; 576 gfx::Size preferred_raster_bounds_;
577 577
578 bool has_preferred_raster_bounds_ : 1; 578 bool has_preferred_raster_bounds_ : 1;
579 bool scrolls_drawn_descendant_ : 1; 579 bool scrolls_drawn_descendant_ : 1;
580 bool has_will_change_transform_hint_ : 1; 580 bool has_will_change_transform_hint_ : 1;
581 bool needs_push_properties_ : 1; 581 bool needs_push_properties_ : 1;
582 bool scrollbars_hidden_ : 1;
582 583
583 DISALLOW_COPY_AND_ASSIGN(LayerImpl); 584 DISALLOW_COPY_AND_ASSIGN(LayerImpl);
584 }; 585 };
585 586
586 } // namespace cc 587 } // namespace cc
587 588
588 #endif // CC_LAYERS_LAYER_IMPL_H_ 589 #endif // CC_LAYERS_LAYER_IMPL_H_
OLDNEW
« no previous file with comments | « cc/layers/layer_client.h ('k') | cc/layers/layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698