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_HOST_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 // by the next sync from the main thread. | 589 // by the next sync from the main thread. |
590 scoped_ptr<LayerTreeImpl> recycle_tree_; | 590 scoped_ptr<LayerTreeImpl> recycle_tree_; |
591 | 591 |
592 InputHandlerClient* input_handler_client_; | 592 InputHandlerClient* input_handler_client_; |
593 bool did_lock_scrolling_layer_; | 593 bool did_lock_scrolling_layer_; |
594 bool should_bubble_scrolls_; | 594 bool should_bubble_scrolls_; |
595 bool wheel_scrolling_; | 595 bool wheel_scrolling_; |
596 bool scroll_affects_scroll_handler_; | 596 bool scroll_affects_scroll_handler_; |
597 int scroll_layer_id_when_mouse_over_scrollbar_; | 597 int scroll_layer_id_when_mouse_over_scrollbar_; |
598 | 598 |
| 599 bool is_scrolling_; |
| 600 |
599 bool tile_priorities_dirty_; | 601 bool tile_priorities_dirty_; |
600 | 602 |
601 // The optional delegate for the root layer scroll offset. | 603 // The optional delegate for the root layer scroll offset. |
602 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate_; | 604 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate_; |
603 LayerTreeSettings settings_; | 605 LayerTreeSettings settings_; |
604 LayerTreeDebugState debug_state_; | 606 LayerTreeDebugState debug_state_; |
605 bool visible_; | 607 bool visible_; |
606 ManagedMemoryPolicy cached_managed_memory_policy_; | 608 ManagedMemoryPolicy cached_managed_memory_policy_; |
607 | 609 |
608 gfx::Vector2dF accumulated_root_overscroll_; | 610 gfx::Vector2dF accumulated_root_overscroll_; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 size_t transfer_buffer_memory_limit_; | 691 size_t transfer_buffer_memory_limit_; |
690 | 692 |
691 std::vector<PictureLayerImpl*> picture_layers_; | 693 std::vector<PictureLayerImpl*> picture_layers_; |
692 | 694 |
693 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 695 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
694 }; | 696 }; |
695 | 697 |
696 } // namespace cc | 698 } // namespace cc |
697 | 699 |
698 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 700 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |