| Index: Source/platform/graphics/paint/DrawingRecorder.cpp
|
| diff --git a/Source/platform/graphics/paint/DrawingRecorder.cpp b/Source/platform/graphics/paint/DrawingRecorder.cpp
|
| index 34b43b3b99dd704803043d5ba30baaffd5a1f975..c697e0b531344892b760bb0fd1407bbd410f18af 100644
|
| --- a/Source/platform/graphics/paint/DrawingRecorder.cpp
|
| +++ b/Source/platform/graphics/paint/DrawingRecorder.cpp
|
| @@ -93,10 +93,13 @@ DrawingRecorder::~DrawingRecorder()
|
| #endif
|
| m_context.displayItemList()->add(CachedDisplayItem::create(m_displayItemClient, DisplayItem::drawingTypeToCachedType(m_displayItemType)));
|
| } else {
|
| - OwnPtr<DrawingDisplayItem> drawingDisplayItem = DrawingDisplayItem::create(m_displayItemClient, m_displayItemType, m_context.endRecording());
|
| + OwnPtr<DrawingDisplayItem> drawingDisplayItem = DrawingDisplayItem::create(m_displayItemClient
|
| + , m_displayItemType
|
| + , m_context.endRecording()
|
| #if ENABLE(ASSERT)
|
| - drawingDisplayItem->setUnderInvalidationCheckingMode(m_underInvalidationCheckingMode);
|
| + , m_underInvalidationCheckingMode
|
| #endif
|
| + );
|
| m_context.displayItemList()->add(drawingDisplayItem.release());
|
| }
|
| }
|
|
|