| 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/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "base/numerics/safe_math.h" | 22 #include "base/numerics/safe_math.h" |
| 23 #include "base/single_thread_task_runner.h" | 23 #include "base/single_thread_task_runner.h" |
| 24 #include "base/stl_util.h" | 24 #include "base/stl_util.h" |
| 25 #include "base/strings/string_number_conversions.h" | 25 #include "base/strings/string_number_conversions.h" |
| 26 #include "base/threading/thread_task_runner_handle.h" | 26 #include "base/threading/thread_task_runner_handle.h" |
| 27 #include "base/trace_event/trace_event.h" | 27 #include "base/trace_event/trace_event.h" |
| 28 #include "base/trace_event/trace_event_argument.h" | 28 #include "base/trace_event/trace_event_argument.h" |
| 29 #include "cc/animation/animation_events.h" | 29 #include "cc/animation/animation_events.h" |
| 30 #include "cc/animation/animation_host.h" | 30 #include "cc/animation/animation_host.h" |
| 31 #include "cc/base/math_util.h" | 31 #include "cc/base/math_util.h" |
| 32 #include "cc/blimp/client_picture_cache.h" |
| 33 #include "cc/blimp/engine_picture_cache.h" |
| 32 #include "cc/blimp/image_serialization_processor.h" | 34 #include "cc/blimp/image_serialization_processor.h" |
| 33 #include "cc/blimp/picture_data.h" | 35 #include "cc/blimp/picture_data.h" |
| 34 #include "cc/blimp/picture_data_conversions.h" | 36 #include "cc/blimp/picture_data_conversions.h" |
| 35 #include "cc/debug/devtools_instrumentation.h" | 37 #include "cc/debug/devtools_instrumentation.h" |
| 36 #include "cc/debug/frame_viewer_instrumentation.h" | 38 #include "cc/debug/frame_viewer_instrumentation.h" |
| 37 #include "cc/debug/rendering_stats_instrumentation.h" | 39 #include "cc/debug/rendering_stats_instrumentation.h" |
| 38 #include "cc/input/layer_selection_bound.h" | 40 #include "cc/input/layer_selection_bound.h" |
| 39 #include "cc/input/page_scale_animation.h" | 41 #include "cc/input/page_scale_animation.h" |
| 40 #include "cc/layers/heads_up_display_layer.h" | 42 #include "cc/layers/heads_up_display_layer.h" |
| 41 #include "cc/layers/heads_up_display_layer_impl.h" | 43 #include "cc/layers/heads_up_display_layer_impl.h" |
| (...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1108 | 1110 |
| 1109 surface_client_id_ = proto.surface_client_id(); | 1111 surface_client_id_ = proto.surface_client_id(); |
| 1110 next_surface_sequence_ = proto.next_surface_sequence(); | 1112 next_surface_sequence_ = proto.next_surface_sequence(); |
| 1111 } | 1113 } |
| 1112 | 1114 |
| 1113 AnimationHost* LayerTreeHost::animation_host() const { | 1115 AnimationHost* LayerTreeHost::animation_host() const { |
| 1114 return layer_tree_->animation_host(); | 1116 return layer_tree_->animation_host(); |
| 1115 } | 1117 } |
| 1116 | 1118 |
| 1117 } // namespace cc | 1119 } // namespace cc |
| OLD | NEW |