| 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 #include "cc/layer_tree_host.h" | 5 #include "cc/layer_tree_host.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| 11 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
| 12 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
| 13 #include "cc/animation_registrar.h" | 13 #include "cc/animation/animation_registrar.h" |
| 14 #include "cc/animation/layer_animation_controller.h" |
| 14 #include "cc/base/math_util.h" | 15 #include "cc/base/math_util.h" |
| 15 #include "cc/base/switches.h" | 16 #include "cc/base/switches.h" |
| 16 #include "cc/base/thread.h" | 17 #include "cc/base/thread.h" |
| 17 #include "cc/debug/overdraw_metrics.h" | 18 #include "cc/debug/overdraw_metrics.h" |
| 18 #include "cc/heads_up_display_layer.h" | 19 #include "cc/heads_up_display_layer.h" |
| 19 #include "cc/heads_up_display_layer_impl.h" | 20 #include "cc/heads_up_display_layer_impl.h" |
| 20 #include "cc/layer.h" | 21 #include "cc/layer.h" |
| 21 #include "cc/layer_animation_controller.h" | |
| 22 #include "cc/layer_iterator.h" | 22 #include "cc/layer_iterator.h" |
| 23 #include "cc/layer_tree_host_client.h" | 23 #include "cc/layer_tree_host_client.h" |
| 24 #include "cc/layer_tree_host_common.h" | 24 #include "cc/layer_tree_host_common.h" |
| 25 #include "cc/layer_tree_host_impl.h" | 25 #include "cc/layer_tree_host_impl.h" |
| 26 #include "cc/layer_tree_impl.h" | 26 #include "cc/layer_tree_impl.h" |
| 27 #include "cc/occlusion_tracker.h" | 27 #include "cc/occlusion_tracker.h" |
| 28 #include "cc/pinch_zoom_scrollbar.h" | 28 #include "cc/pinch_zoom_scrollbar.h" |
| 29 #include "cc/pinch_zoom_scrollbar_geometry.h" | 29 #include "cc/pinch_zoom_scrollbar_geometry.h" |
| 30 #include "cc/pinch_zoom_scrollbar_painter.h" | 30 #include "cc/pinch_zoom_scrollbar_painter.h" |
| 31 #include "cc/prioritized_resource_manager.h" | 31 #include "cc/prioritized_resource_manager.h" |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 SetAnimationEventsRecursive(events, | 1022 SetAnimationEventsRecursive(events, |
| 1023 layer->children()[child_index].get(), | 1023 layer->children()[child_index].get(), |
| 1024 wall_clock_time); | 1024 wall_clock_time); |
| 1025 } | 1025 } |
| 1026 | 1026 |
| 1027 skia::RefPtr<SkPicture> LayerTreeHost::CapturePicture() { | 1027 skia::RefPtr<SkPicture> LayerTreeHost::CapturePicture() { |
| 1028 return proxy_->CapturePicture(); | 1028 return proxy_->CapturePicture(); |
| 1029 } | 1029 } |
| 1030 | 1030 |
| 1031 } // namespace cc | 1031 } // namespace cc |
| OLD | NEW |