| Index: third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| index b5117e5841ddfc2919132f7b08a7ec5f66e7134e..4e8b01c3a0041cf4f78a1d5c33dbf67a19110616 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
|
| @@ -118,10 +118,10 @@ class TestDisplayItem final : public DisplayItem {
|
| };
|
|
|
| #ifndef NDEBUG
|
| -#define TRACE_DISPLAY_ITEMS(i, expected, actual) \
|
| - String trace = String::format("%d: ", (int)i) + "Expected: " + \
|
| - (expected).asDebugString() + " Actual: " + \
|
| - (actual).asDebugString(); \
|
| +#define TRACE_DISPLAY_ITEMS(i, expected, actual) \
|
| + String trace = String::format("%d: ", (int)i) + \
|
| + "Expected: " + (expected).asDebugString() + \
|
| + " Actual: " + (actual).asDebugString(); \
|
| SCOPED_TRACE(trace.utf8().data());
|
| #else
|
| #define TRACE_DISPLAY_ITEMS(i, expected, actual)
|
|
|