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/tree_synchronizer.h" | 5 #include "cc/trees/tree_synchronizer.h" |
6 | 6 |
| 7 #include "base/containers/hash_tables.h" |
7 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
8 #include "base/hash_tables.h" | |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "cc/animation/scrollbar_animation_controller.h" | 10 #include "cc/animation/scrollbar_animation_controller.h" |
11 #include "cc/input/scrollbar.h" | 11 #include "cc/input/scrollbar.h" |
12 #include "cc/layers/layer.h" | 12 #include "cc/layers/layer.h" |
13 #include "cc/layers/layer_impl.h" | 13 #include "cc/layers/layer_impl.h" |
14 #include "cc/layers/scrollbar_layer.h" | 14 #include "cc/layers/scrollbar_layer.h" |
15 #include "cc/layers/scrollbar_layer_impl.h" | 15 #include "cc/layers/scrollbar_layer_impl.h" |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 | 18 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 206 |
207 void TreeSynchronizer::PushProperties(Layer* layer, LayerImpl* layer_impl) { | 207 void TreeSynchronizer::PushProperties(Layer* layer, LayerImpl* layer_impl) { |
208 PushPropertiesInternal(layer, layer_impl); | 208 PushPropertiesInternal(layer, layer_impl); |
209 } | 209 } |
210 | 210 |
211 void TreeSynchronizer::PushProperties(LayerImpl* layer, LayerImpl* layer_impl) { | 211 void TreeSynchronizer::PushProperties(LayerImpl* layer, LayerImpl* layer_impl) { |
212 PushPropertiesInternal(layer, layer_impl); | 212 PushPropertiesInternal(layer, layer_impl); |
213 } | 213 } |
214 | 214 |
215 } // namespace cc | 215 } // namespace cc |
OLD | NEW |