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 debug { | 22 namespace trace_event { |
23 class TracedValue; | 23 class TracedValue; |
24 } | 24 } |
| 25 |
| 26 // This is added temporarily. Once the renaming of namespace usages |
| 27 // accross all folders are done, this will be removed. |
| 28 // TODO(ssid): crrev.com/837303004 |
| 29 namespace debug { |
| 30 using ::base::trace_event::TracedValue; |
25 } | 31 } |
| 32 } // namespace base |
26 | 33 |
27 namespace cc { | 34 namespace cc { |
28 | 35 |
29 class ContextProvider; | 36 class ContextProvider; |
30 class DebugRectHistory; | 37 class DebugRectHistory; |
31 class FrameRateCounter; | 38 class FrameRateCounter; |
32 class HeadsUpDisplayLayerImpl; | 39 class HeadsUpDisplayLayerImpl; |
33 class LayerScrollOffsetDelegateProxy; | 40 class LayerScrollOffsetDelegateProxy; |
34 class LayerTreeDebugState; | 41 class LayerTreeDebugState; |
35 class LayerTreeHostImpl; | 42 class LayerTreeHostImpl; |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 | 421 |
415 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; | 422 scoped_ptr<PendingPageScaleAnimation> pending_page_scale_animation_; |
416 | 423 |
417 private: | 424 private: |
418 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 425 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
419 }; | 426 }; |
420 | 427 |
421 } // namespace cc | 428 } // namespace cc |
422 | 429 |
423 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 430 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
OLD | NEW |