| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <bitset> | 10 #include <bitset> |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 void NotifyReadyToActivate() override; | 348 void NotifyReadyToActivate() override; |
| 349 void NotifyReadyToDraw() override; | 349 void NotifyReadyToDraw() override; |
| 350 void NotifyAllTileTasksCompleted() override; | 350 void NotifyAllTileTasksCompleted() override; |
| 351 void NotifyTileStateChanged(const Tile* tile) override; | 351 void NotifyTileStateChanged(const Tile* tile) override; |
| 352 std::unique_ptr<RasterTilePriorityQueue> BuildRasterQueue( | 352 std::unique_ptr<RasterTilePriorityQueue> BuildRasterQueue( |
| 353 TreePriority tree_priority, | 353 TreePriority tree_priority, |
| 354 RasterTilePriorityQueue::Type type) override; | 354 RasterTilePriorityQueue::Type type) override; |
| 355 std::unique_ptr<EvictionTilePriorityQueue> BuildEvictionQueue( | 355 std::unique_ptr<EvictionTilePriorityQueue> BuildEvictionQueue( |
| 356 TreePriority tree_priority) override; | 356 TreePriority tree_priority) override; |
| 357 void SetIsLikelyToRequireADraw(bool is_likely_to_require_a_draw) override; | 357 void SetIsLikelyToRequireADraw(bool is_likely_to_require_a_draw) override; |
| 358 gfx::ColorSpace GetTileColorSpace() const override; | 358 gfx::ColorSpace GetRasterColorSpace() const override; |
| 359 void RequestImplSideInvalidation() override; | 359 void RequestImplSideInvalidation() override; |
| 360 | 360 |
| 361 // ScrollbarAnimationControllerClient implementation. | 361 // ScrollbarAnimationControllerClient implementation. |
| 362 void PostDelayedScrollbarAnimationTask(const base::Closure& task, | 362 void PostDelayedScrollbarAnimationTask(const base::Closure& task, |
| 363 base::TimeDelta delay) override; | 363 base::TimeDelta delay) override; |
| 364 void SetNeedsAnimateForScrollbarAnimation() override; | 364 void SetNeedsAnimateForScrollbarAnimation() override; |
| 365 void SetNeedsRedrawForScrollbarAnimation() override; | 365 void SetNeedsRedrawForScrollbarAnimation() override; |
| 366 ScrollbarSet ScrollbarsFor(int scroll_layer_id) const override; | 366 ScrollbarSet ScrollbarsFor(int scroll_layer_id) const override; |
| 367 void DidChangeScrollbarVisibility() override; | 367 void DidChangeScrollbarVisibility() override; |
| 368 | 368 |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 | 843 |
| 844 std::unique_ptr<PendingTreeDurationHistogramTimer> | 844 std::unique_ptr<PendingTreeDurationHistogramTimer> |
| 845 pending_tree_duration_timer_; | 845 pending_tree_duration_timer_; |
| 846 | 846 |
| 847 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 847 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 848 }; | 848 }; |
| 849 | 849 |
| 850 } // namespace cc | 850 } // namespace cc |
| 851 | 851 |
| 852 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 852 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |