| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_IMPL_H_ |
| 6 #define CC_TREES_LAYER_TREE_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <map> | 11 #include <map> |
| 9 #include <set> | 12 #include <set> |
| 10 #include <string> | 13 #include <string> |
| 11 #include <vector> | 14 #include <vector> |
| 12 | 15 |
| 13 #include "base/containers/hash_tables.h" | 16 #include "base/containers/hash_tables.h" |
| 17 #include "base/macros.h" |
| 14 #include "base/values.h" | 18 #include "base/values.h" |
| 15 #include "cc/base/synced_property.h" | 19 #include "cc/base/synced_property.h" |
| 16 #include "cc/input/layer_selection_bound.h" | 20 #include "cc/input/layer_selection_bound.h" |
| 17 #include "cc/layers/layer_impl.h" | 21 #include "cc/layers/layer_impl.h" |
| 18 #include "cc/output/begin_frame_args.h" | 22 #include "cc/output/begin_frame_args.h" |
| 19 #include "cc/output/renderer.h" | 23 #include "cc/output/renderer.h" |
| 20 #include "cc/output/swap_promise.h" | 24 #include "cc/output/swap_promise.h" |
| 21 #include "cc/resources/ui_resource_client.h" | 25 #include "cc/resources/ui_resource_client.h" |
| 22 #include "cc/trees/layer_tree_host_impl.h" | 26 #include "cc/trees/layer_tree_host_impl.h" |
| 23 #include "cc/trees/property_tree.h" | 27 #include "cc/trees/property_tree.h" |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 | 528 |
| 525 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 529 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
| 526 | 530 |
| 527 private: | 531 private: |
| 528 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 532 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
| 529 }; | 533 }; |
| 530 | 534 |
| 531 } // namespace cc | 535 } // namespace cc |
| 532 | 536 |
| 533 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 537 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
| OLD | NEW |