| 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 <limits> | 8 #include <limits> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <set> | 10 #include <set> |
| (...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_lists.h" | 33 #include "cc/layers/layer_lists.h" |
| 34 #include "cc/output/output_surface.h" | 34 #include "cc/output/output_surface.h" |
| 35 #include "cc/resources/resource_format.h" | 35 #include "cc/resources/resource_format.h" |
| 36 #include "cc/resources/scoped_ui_resource.h" | 36 #include "cc/resources/scoped_ui_resource.h" |
| 37 #include "cc/trees/layer_tree_host_client.h" | 37 #include "cc/trees/layer_tree_host_client.h" |
| 38 #include "cc/trees/layer_tree_host_common.h" | 38 #include "cc/trees/layer_tree_host_common.h" |
| 39 #include "cc/trees/layer_tree_settings.h" | 39 #include "cc/trees/layer_tree_settings.h" |
| 40 #include "cc/trees/proxy.h" | 40 #include "cc/trees/proxy.h" |
| 41 #include "third_party/skia/include/core/SkColor.h" | 41 #include "third_party/skia/include/core/SkColor.h" |
| 42 #include "ui/gfx/rect.h" | 42 #include "ui/gfx/geometry/rect.h" |
| 43 | 43 |
| 44 namespace cc { | 44 namespace cc { |
| 45 class AnimationRegistrar; | 45 class AnimationRegistrar; |
| 46 class GpuMemoryBufferManager; | 46 class GpuMemoryBufferManager; |
| 47 class HeadsUpDisplayLayer; | 47 class HeadsUpDisplayLayer; |
| 48 class Layer; | 48 class Layer; |
| 49 class LayerTreeHostImpl; | 49 class LayerTreeHostImpl; |
| 50 class LayerTreeHostImplClient; | 50 class LayerTreeHostImplClient; |
| 51 class LayerTreeHostSingleThreadClient; | 51 class LayerTreeHostSingleThreadClient; |
| 52 class PrioritizedResource; | 52 class PrioritizedResource; |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 | 460 |
| 461 ScopedPtrVector<SwapPromise> swap_promise_list_; | 461 ScopedPtrVector<SwapPromise> swap_promise_list_; |
| 462 std::set<SwapPromiseMonitor*> swap_promise_monitor_; | 462 std::set<SwapPromiseMonitor*> swap_promise_monitor_; |
| 463 | 463 |
| 464 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 464 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 465 }; | 465 }; |
| 466 | 466 |
| 467 } // namespace cc | 467 } // namespace cc |
| 468 | 468 |
| 469 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 469 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |