| 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 EffectPaintPropertyNode_h | 5 #ifndef EffectPaintPropertyNode_h |
| 6 #define EffectPaintPropertyNode_h | 6 #define EffectPaintPropertyNode_h |
| 7 | 7 |
| 8 #include "cc/layers/layer.h" | 8 #include "cc/layers/layer.h" |
| 9 #include "platform/PlatformExport.h" | 9 #include "platform/PlatformExport.h" |
| 10 #include "platform/graphics/CompositorElementId.h" | 10 #include "platform/graphics/CompositorElementId.h" |
| 11 #include "platform/graphics/CompositorFilterOperations.h" | 11 #include "platform/graphics/CompositorFilterOperations.h" |
| 12 #include "platform/graphics/GraphicsTypes.h" | 12 #include "platform/graphics/GraphicsTypes.h" |
| 13 #include "platform/graphics/paint/ClipPaintPropertyNode.h" | 13 #include "platform/graphics/paint/ClipPaintPropertyNode.h" |
| 14 #include "platform/graphics/paint/TransformPaintPropertyNode.h" | 14 #include "platform/graphics/paint/TransformPaintPropertyNode.h" |
| 15 #include "wtf/PassRefPtr.h" | 15 #include "platform/wtf/PassRefPtr.h" |
| 16 #include "wtf/RefCounted.h" | 16 #include "platform/wtf/RefCounted.h" |
| 17 #include "wtf/RefPtr.h" | 17 #include "platform/wtf/RefPtr.h" |
| 18 #include "wtf/text/WTFString.h" | 18 #include "platform/wtf/text/WTFString.h" |
| 19 | 19 |
| 20 #include <iosfwd> | 20 #include <iosfwd> |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 // Effect nodes are abstraction of isolated groups, along with optional effects | 24 // Effect nodes are abstraction of isolated groups, along with optional effects |
| 25 // that can be applied to the composited output of the group. | 25 // that can be applied to the composited output of the group. |
| 26 // | 26 // |
| 27 // The effect tree is rooted at a node with no parent. This root node should | 27 // The effect tree is rooted at a node with no parent. This root node should |
| 28 // not be modified. | 28 // not be modified. |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 FloatPoint m_paintOffset; | 198 FloatPoint m_paintOffset; |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 // Redeclared here to avoid ODR issues. | 201 // Redeclared here to avoid ODR issues. |
| 202 // See platform/testing/PaintPrinters.h. | 202 // See platform/testing/PaintPrinters.h. |
| 203 void PrintTo(const EffectPaintPropertyNode&, std::ostream*); | 203 void PrintTo(const EffectPaintPropertyNode&, std::ostream*); |
| 204 | 204 |
| 205 } // namespace blink | 205 } // namespace blink |
| 206 | 206 |
| 207 #endif // EffectPaintPropertyNode_h | 207 #endif // EffectPaintPropertyNode_h |
| OLD | NEW |