| Index: third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp b/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
|
| index 663bc9cc46f1e003e464f7dd6b4fef4def94e294..574745693f62712b320e4d5cb92f32855db77c2a 100644
|
| --- a/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp
|
| @@ -10,12 +10,17 @@
|
|
|
| namespace blink {
|
|
|
| -FloatClipRecorder::FloatClipRecorder(GraphicsContext& context,
|
| - const DisplayItemClient& client,
|
| - PaintPhase paintPhase,
|
| - const FloatRect& clipRect)
|
| +FloatClipRecorder::FloatClipRecorder(
|
| + GraphicsContext& context,
|
| + PaintPhase paintPhase,
|
| + const FloatRect& clipRect,
|
| + const LayoutRect& visualRect,
|
| + const WTF::String& debugName,
|
| + bool paintedOutputOfObjectHasNoEffectRegardlessOfSize)
|
| : m_context(context),
|
| - m_client(client),
|
| + m_client(visualRect,
|
| + debugName,
|
| + paintedOutputOfObjectHasNoEffectRegardlessOfSize),
|
| m_clipType(DisplayItem::paintPhaseToFloatClipType(paintPhase)) {
|
| m_context.getPaintController().createAndAppend<FloatClipDisplayItem>(
|
| m_client, m_clipType, clipRect);
|
|
|