| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 03f015e51e85bb48c8ef4fdfbfcb29b24a66fd50..246bbe910bdc9a8be9abe7c51df1a54fe43716ca 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -1164,7 +1164,7 @@ void addJsonObjectForPoint(TracedValue* value, const char* name, const T& point)
|
| value->endDictionary();
|
| }
|
|
|
| -static PassRefPtr<TraceEvent::ConvertableToTraceFormat> jsonObjectForPaintInvalidationInfo(const LayoutRect& rect, const String& invalidationReason)
|
| +static PassRefPtr<TracedValue> jsonObjectForPaintInvalidationInfo(const LayoutRect& rect, const String& invalidationReason)
|
| {
|
| RefPtr<TracedValue> value = TracedValue::create();
|
| addJsonObjectForRect(value.get(), "rect", rect);
|
| @@ -1337,7 +1337,7 @@ void LayoutObject::invalidatePaintOfSubtreesIfNeeded(PaintInvalidationState& chi
|
| }
|
| }
|
|
|
| -static PassRefPtr<TraceEvent::ConvertableToTraceFormat> jsonObjectForOldAndNewRects(const LayoutRect& oldRect, const LayoutPoint& oldLocation, const LayoutRect& newRect, const LayoutPoint& newLocation)
|
| +static PassRefPtr<TracedValue> jsonObjectForOldAndNewRects(const LayoutRect& oldRect, const LayoutPoint& oldLocation, const LayoutRect& newRect, const LayoutPoint& newLocation)
|
| {
|
| RefPtr<TracedValue> value = TracedValue::create();
|
| addJsonObjectForRect(value.get(), "oldRect", oldRect);
|
|
|