| Index: third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
|
| index a40586f0080d9e1c479cecc8aa9d77313182b657..ab460d4f374662ae49533217aaccef6640b778ae 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
|
| @@ -22,4 +22,11 @@ cc::Layer* EffectPaintPropertyNode::ensureDummyLayer() const {
|
| return m_dummyLayer.get();
|
| }
|
|
|
| +String EffectPaintPropertyNode::toString() const {
|
| + return String::format(
|
| + "localTransformSpace=%p outputClip=%p opacity=%f filter=%s",
|
| + m_localTransformSpace.get(), m_outputClip.get(), m_opacity,
|
| + m_filter.toString().ascii().data());
|
| +}
|
| +
|
| } // namespace blink
|
|
|