Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(689)

Unified Diff: third_party/WebKit/Source/core/paint/FloatClipRecorder.cpp

Issue 2713673005: client-goodbye
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/paint/FloatClipRecorder.h ('k') | third_party/WebKit/Source/core/paint/FramePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698