| 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 11 matching lines...) Expand all Loading... |
| 22 #include "cc/input/input_handler.h" | 22 #include "cc/input/input_handler.h" |
| 23 #include "cc/input/layer_scroll_offset_delegate.h" | 23 #include "cc/input/layer_scroll_offset_delegate.h" |
| 24 #include "cc/input/top_controls_manager_client.h" | 24 #include "cc/input/top_controls_manager_client.h" |
| 25 #include "cc/layers/layer_lists.h" | 25 #include "cc/layers/layer_lists.h" |
| 26 #include "cc/layers/render_pass_sink.h" | 26 #include "cc/layers/render_pass_sink.h" |
| 27 #include "cc/output/begin_frame_args.h" | 27 #include "cc/output/begin_frame_args.h" |
| 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/gpu_tile_task_worker_pool.h" |
| 32 #include "cc/resources/rasterizer.h" | 33 #include "cc/resources/rasterizer.h" |
| 33 #include "cc/resources/resource_provider.h" | 34 #include "cc/resources/resource_provider.h" |
| 34 #include "cc/resources/tile_manager.h" | 35 #include "cc/resources/tile_manager.h" |
| 35 #include "cc/scheduler/commit_earlyout_reason.h" | 36 #include "cc/scheduler/commit_earlyout_reason.h" |
| 36 #include "cc/scheduler/draw_result.h" | 37 #include "cc/scheduler/draw_result.h" |
| 37 #include "skia/ext/refptr.h" | 38 #include "skia/ext/refptr.h" |
| 38 #include "third_party/skia/include/core/SkColor.h" | 39 #include "third_party/skia/include/core/SkColor.h" |
| 39 #include "ui/gfx/geometry/rect.h" | 40 #include "ui/gfx/geometry/rect.h" |
| 40 | 41 |
| 41 namespace cc { | 42 namespace cc { |
| 42 | 43 |
| 43 class CompletionEvent; | 44 class CompletionEvent; |
| 44 class CompositorFrameMetadata; | 45 class CompositorFrameMetadata; |
| 45 class DebugRectHistory; | 46 class DebugRectHistory; |
| 46 class EvictionTilePriorityQueue; | 47 class EvictionTilePriorityQueue; |
| 47 class FrameRateCounter; | 48 class FrameRateCounter; |
| 48 class LayerImpl; | 49 class LayerImpl; |
| 49 class LayerTreeImpl; | 50 class LayerTreeImpl; |
| 50 class MemoryHistory; | 51 class MemoryHistory; |
| 51 class PageScaleAnimation; | 52 class PageScaleAnimation; |
| 52 class PaintTimeCounter; | 53 class PaintTimeCounter; |
| 53 class PictureLayerImpl; | 54 class PictureLayerImpl; |
| 54 class RasterTilePriorityQueue; | 55 class RasterTilePriorityQueue; |
| 55 class TileTaskWorkerPool; | 56 class TileTaskWorkerPool; |
| 57 class Rasterizer; |
| 56 class RenderPassDrawQuad; | 58 class RenderPassDrawQuad; |
| 57 class RenderingStatsInstrumentation; | 59 class RenderingStatsInstrumentation; |
| 58 class ResourcePool; | 60 class ResourcePool; |
| 59 class ScrollElasticityHelper; | 61 class ScrollElasticityHelper; |
| 60 class ScrollbarLayerImplBase; | 62 class ScrollbarLayerImplBase; |
| 61 class TextureMailboxDeleter; | 63 class TextureMailboxDeleter; |
| 62 class TopControlsManager; | 64 class TopControlsManager; |
| 63 class UIResourceBitmap; | 65 class UIResourceBitmap; |
| 64 class UIResourceRequest; | 66 class UIResourceRequest; |
| 65 struct RendererCapabilitiesImpl; | 67 struct RendererCapabilitiesImpl; |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 | 731 |
| 730 bool requires_high_res_to_draw_; | 732 bool requires_high_res_to_draw_; |
| 731 bool required_for_draw_tile_is_top_of_raster_queue_; | 733 bool required_for_draw_tile_is_top_of_raster_queue_; |
| 732 | 734 |
| 733 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 735 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 734 }; | 736 }; |
| 735 | 737 |
| 736 } // namespace cc | 738 } // namespace cc |
| 737 | 739 |
| 738 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 740 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |