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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "cc/base/scoped_ptr_vector.h" | 14 #include "cc/base/scoped_ptr_vector.h" |
15 #include "cc/base/swap_promise.h" | 15 #include "cc/base/swap_promise.h" |
16 #include "cc/base/synced_property.h" | 16 #include "cc/base/synced_property.h" |
17 #include "cc/layers/layer_impl.h" | 17 #include "cc/layers/layer_impl.h" |
18 #include "cc/output/renderer.h" | 18 #include "cc/output/renderer.h" |
19 #include "cc/resources/ui_resource_client.h" | 19 #include "cc/resources/ui_resource_client.h" |
20 | 20 |
21 namespace base { | 21 namespace base { |
| 22 namespace trace_event { |
| 23 class TracedValue; |
| 24 } |
| 25 |
22 namespace debug { | 26 namespace debug { |
23 class TracedValue; | 27 using ::base::trace_event::TracedValue; |
24 } | 28 } |
25 } | 29 } |
26 | 30 |
27 namespace cc { | 31 namespace cc { |
28 | 32 |
29 class ContextProvider; | 33 class ContextProvider; |
30 class DebugRectHistory; | 34 class DebugRectHistory; |
31 class FrameRateCounter; | 35 class FrameRateCounter; |
32 class HeadsUpDisplayLayerImpl; | 36 class HeadsUpDisplayLayerImpl; |
33 class LayerScrollOffsetDelegateProxy; | 37 class LayerScrollOffsetDelegateProxy; |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 | 418 |
415 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 419 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
416 | 420 |
417 private: | 421 private: |
418 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 422 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
419 }; | 423 }; |
420 | 424 |
421 } // namespace cc | 425 } // namespace cc |
422 | 426 |
423 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 427 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
OLD | NEW |