| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 // In impl-side painting mode, tree with possibly incomplete rasterized | 721 // In impl-side painting mode, tree with possibly incomplete rasterized |
| 722 // content. May be promoted to active by ActivatePendingTree(). | 722 // content. May be promoted to active by ActivatePendingTree(). |
| 723 scoped_ptr<LayerTreeImpl> pending_tree_; | 723 scoped_ptr<LayerTreeImpl> pending_tree_; |
| 724 | 724 |
| 725 // In impl-side painting mode, inert tree with layers that can be recycled | 725 // In impl-side painting mode, inert tree with layers that can be recycled |
| 726 // by the next sync from the main thread. | 726 // by the next sync from the main thread. |
| 727 scoped_ptr<LayerTreeImpl> recycle_tree_; | 727 scoped_ptr<LayerTreeImpl> recycle_tree_; |
| 728 | 728 |
| 729 InputHandlerClient* input_handler_client_; | 729 InputHandlerClient* input_handler_client_; |
| 730 bool did_lock_scrolling_layer_; | 730 bool did_lock_scrolling_layer_; |
| 731 bool should_bubble_scrolls_; | |
| 732 bool wheel_scrolling_; | 731 bool wheel_scrolling_; |
| 733 bool scroll_affects_scroll_handler_; | 732 bool scroll_affects_scroll_handler_; |
| 734 int scroll_layer_id_when_mouse_over_scrollbar_; | 733 int scroll_layer_id_when_mouse_over_scrollbar_; |
| 735 ScopedPtrVector<SwapPromise> swap_promises_for_main_thread_scroll_update_; | 734 ScopedPtrVector<SwapPromise> swap_promises_for_main_thread_scroll_update_; |
| 736 | 735 |
| 737 // An object to implement the ScrollElasticityHelper interface and | 736 // An object to implement the ScrollElasticityHelper interface and |
| 738 // hold all state related to elasticity. May be NULL if never requested. | 737 // hold all state related to elasticity. May be NULL if never requested. |
| 739 scoped_ptr<ScrollElasticityHelper> scroll_elasticity_helper_; | 738 scoped_ptr<ScrollElasticityHelper> scroll_elasticity_helper_; |
| 740 | 739 |
| 741 bool tile_priorities_dirty_; | 740 bool tile_priorities_dirty_; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; | 821 scoped_ptr<FrameTimingTracker> frame_timing_tracker_; |
| 823 | 822 |
| 824 scoped_ptr<Viewport> viewport_; | 823 scoped_ptr<Viewport> viewport_; |
| 825 | 824 |
| 826 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 825 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 827 }; | 826 }; |
| 828 | 827 |
| 829 } // namespace cc | 828 } // namespace cc |
| 830 | 829 |
| 831 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 830 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |