| Index: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
|
| diff --git a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
|
| index 8cd0db3ff0ce751ac912a7db9e59b467b8929bcf..496ee78051b57f1595de0efd90605ebe7c0a40b6 100644
|
| --- a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp
|
| @@ -32,8 +32,7 @@ static void PrintPointer(const void* ptr, std::ostream& os)
|
|
|
| void PrintTo(const ClipPaintPropertyNode& node, std::ostream* os)
|
| {
|
| - *os << "ClipPaintPropertyNode(clip=";
|
| - PrintTo(node.clipRect(), os);
|
| + *os << "ClipPaintPropertyNode(clip=" << node.clipRect();
|
| *os << ", localTransformSpace=";
|
| PrintPointer(node.localTransformSpace(), *os);
|
| *os << ", parent=";
|
| @@ -59,9 +58,7 @@ void PrintTo(const PaintChunk& chunk, std::ostream* os)
|
| }
|
| *os << ", props=";
|
| PrintTo(chunk.properties, os);
|
| - *os << ", bounds=";
|
| - PrintTo(chunk.bounds, os);
|
| - *os << ", knownToBeOpaque=" << chunk.knownToBeOpaque << ")";
|
| + *os << ", bounds=" << chunk.bounds << ", knownToBeOpaque=" << chunk.knownToBeOpaque << ")";
|
| }
|
|
|
| void PrintTo(const PaintChunkProperties& properties, std::ostream* os)
|
| @@ -99,11 +96,8 @@ void PrintTo(const PaintChunkProperties& properties, std::ostream* os)
|
|
|
| void PrintTo(const TransformPaintPropertyNode& transformPaintProperty, std::ostream* os)
|
| {
|
| - *os << "TransformPaintPropertyNode(matrix=";
|
| - PrintTo(transformPaintProperty.matrix(), os);
|
| - *os << ", origin=";
|
| - PrintTo(transformPaintProperty.origin(), os);
|
| - *os << ")";
|
| + *os << "TransformPaintPropertyNode(matrix=" << transformPaintProperty.matrix()
|
| + << ", origin=" << transformPaintProperty.origin() << ")";
|
| }
|
|
|
| void PrintTo(const EffectPaintPropertyNode& effect, std::ostream* os)
|
|
|