| 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_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 Loading... |
| 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_ |
| OLD | NEW |