| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 PropertyTreeManager_h | 5 #ifndef PropertyTreeManager_h |
| 6 #define PropertyTreeManager_h | 6 #define PropertyTreeManager_h |
| 7 | 7 |
| 8 #include "platform/wtf/HashMap.h" | 8 #include "platform/wtf/HashMap.h" |
| 9 #include "platform/wtf/HashSet.h" | 9 #include "platform/wtf/HashSet.h" |
| 10 #include "platform/wtf/Noncopyable.h" | 10 #include "platform/wtf/Noncopyable.h" |
| 11 #include "platform/wtf/Vector.h" | 11 #include "platform/wtf/Vector.h" |
| 12 | 12 |
| 13 namespace cc { | 13 namespace cc { |
| 14 class ClipTree; | 14 class ClipTree; |
| 15 class EffectTree; | 15 class EffectTree; |
| 16 class Layer; | 16 class Layer; |
| 17 class PropertyTrees; | 17 class PropertyTrees; |
| 18 class ScrollTree; | 18 class ScrollTree; |
| 19 class TransformTree; | 19 class TransformTree; |
| 20 } | 20 } // namespace cc |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 class ClipPaintPropertyNode; | 24 class ClipPaintPropertyNode; |
| 25 class EffectPaintPropertyNode; | 25 class EffectPaintPropertyNode; |
| 26 class ScrollPaintPropertyNode; | 26 class ScrollPaintPropertyNode; |
| 27 class TransformPaintPropertyNode; | 27 class TransformPaintPropertyNode; |
| 28 | 28 |
| 29 // Mutates a cc property tree to reflect Blink paint property tree | 29 // Mutates a cc property tree to reflect Blink paint property tree |
| 30 // state. Intended for use by PaintArtifactCompositor. | 30 // state. Intended for use by PaintArtifactCompositor. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 int sequence_number_; | 121 int sequence_number_; |
| 122 | 122 |
| 123 #if DCHECK_IS_ON() | 123 #if DCHECK_IS_ON() |
| 124 HashSet<const EffectPaintPropertyNode*> effect_nodes_converted_; | 124 HashSet<const EffectPaintPropertyNode*> effect_nodes_converted_; |
| 125 #endif | 125 #endif |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 } // namespace blink | 128 } // namespace blink |
| 129 | 129 |
| 130 #endif // PropertyTreeManager_h | 130 #endif // PropertyTreeManager_h |
| OLD | NEW |