| 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_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "cc/input/top_controls_state.h" | 32 #include "cc/input/top_controls_state.h" |
| 33 #include "cc/layers/layer_collections.h" | 33 #include "cc/layers/layer_collections.h" |
| 34 #include "cc/output/output_surface.h" | 34 #include "cc/output/output_surface.h" |
| 35 #include "cc/output/renderer_capabilities.h" | 35 #include "cc/output/renderer_capabilities.h" |
| 36 #include "cc/output/swap_promise.h" | 36 #include "cc/output/swap_promise.h" |
| 37 #include "cc/resources/resource_format.h" | 37 #include "cc/resources/resource_format.h" |
| 38 #include "cc/resources/scoped_ui_resource.h" | 38 #include "cc/resources/scoped_ui_resource.h" |
| 39 #include "cc/surfaces/surface_sequence.h" | 39 #include "cc/surfaces/surface_sequence.h" |
| 40 #include "cc/trees/compositor_mode.h" | 40 #include "cc/trees/compositor_mode.h" |
| 41 #include "cc/trees/layer_tree_host_client.h" | 41 #include "cc/trees/layer_tree_host_client.h" |
| 42 #include "cc/trees/layer_tree_host_common.h" | |
| 43 #include "cc/trees/layer_tree_settings.h" | 42 #include "cc/trees/layer_tree_settings.h" |
| 44 #include "cc/trees/mutator_host_client.h" | 43 #include "cc/trees/mutator_host_client.h" |
| 45 #include "cc/trees/proxy.h" | 44 #include "cc/trees/proxy.h" |
| 46 #include "cc/trees/swap_promise_monitor.h" | 45 #include "cc/trees/swap_promise_monitor.h" |
| 47 #include "third_party/skia/include/core/SkColor.h" | 46 #include "third_party/skia/include/core/SkColor.h" |
| 48 #include "ui/gfx/geometry/rect.h" | 47 #include "ui/gfx/geometry/rect.h" |
| 49 | 48 |
| 50 namespace gpu { | 49 namespace gpu { |
| 51 class GpuMemoryBufferManager; | 50 class GpuMemoryBufferManager; |
| 52 } | 51 } |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 592 |
| 594 uint32_t surface_id_namespace_; | 593 uint32_t surface_id_namespace_; |
| 595 uint32_t next_surface_sequence_; | 594 uint32_t next_surface_sequence_; |
| 596 | 595 |
| 597 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 596 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 598 }; | 597 }; |
| 599 | 598 |
| 600 } // namespace cc | 599 } // namespace cc |
| 601 | 600 |
| 602 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 601 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |