| 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 17 matching lines...) Expand all Loading... |
| 28 #include "cc/output/managed_memory_policy.h" | 28 #include "cc/output/managed_memory_policy.h" |
| 29 #include "cc/output/output_surface_client.h" | 29 #include "cc/output/output_surface_client.h" |
| 30 #include "cc/output/renderer.h" | 30 #include "cc/output/renderer.h" |
| 31 #include "cc/quads/render_pass.h" | 31 #include "cc/quads/render_pass.h" |
| 32 #include "cc/resources/resource_provider.h" | 32 #include "cc/resources/resource_provider.h" |
| 33 #include "cc/resources/tile_manager.h" | 33 #include "cc/resources/tile_manager.h" |
| 34 #include "cc/scheduler/begin_frame_source.h" | 34 #include "cc/scheduler/begin_frame_source.h" |
| 35 #include "cc/scheduler/draw_result.h" | 35 #include "cc/scheduler/draw_result.h" |
| 36 #include "skia/ext/refptr.h" | 36 #include "skia/ext/refptr.h" |
| 37 #include "third_party/skia/include/core/SkColor.h" | 37 #include "third_party/skia/include/core/SkColor.h" |
| 38 #include "ui/gfx/rect.h" | 38 #include "ui/gfx/geometry/rect.h" |
| 39 | 39 |
| 40 namespace cc { | 40 namespace cc { |
| 41 | 41 |
| 42 class CompletionEvent; | 42 class CompletionEvent; |
| 43 class CompositorFrameMetadata; | 43 class CompositorFrameMetadata; |
| 44 class DebugRectHistory; | 44 class DebugRectHistory; |
| 45 class EvictionTilePriorityQueue; | 45 class EvictionTilePriorityQueue; |
| 46 class FrameRateCounter; | 46 class FrameRateCounter; |
| 47 class LayerImpl; | 47 class LayerImpl; |
| 48 class LayerTreeHostImplTimeSourceAdapter; | 48 class LayerTreeHostImplTimeSourceAdapter; |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 std::vector<PictureLayerImpl::Pair> picture_layer_pairs_; | 710 std::vector<PictureLayerImpl::Pair> picture_layer_pairs_; |
| 711 | 711 |
| 712 bool requires_high_res_to_draw_; | 712 bool requires_high_res_to_draw_; |
| 713 | 713 |
| 714 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 714 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 715 }; | 715 }; |
| 716 | 716 |
| 717 } // namespace cc | 717 } // namespace cc |
| 718 | 718 |
| 719 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 719 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |