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

Unified Diff: third_party/WebKit/Source/core/paint/Transform3DRecorder.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/Transform3DRecorder.cpp
diff --git a/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp b/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp
index ad1b0d8d021cadeb54e5c14828e47a437b1d413c..83ed4c4df3c6a661964c0fb009e23b3adb7c0601 100644
--- a/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp
+++ b/third_party/WebKit/Source/core/paint/Transform3DRecorder.cpp
@@ -10,12 +10,19 @@
namespace blink {
-Transform3DRecorder::Transform3DRecorder(GraphicsContext& context,
- const DisplayItemClient& client,
- DisplayItem::Type type,
- const TransformationMatrix& transform,
- const FloatPoint3D& transformOrigin)
- : m_context(context), m_client(client), m_type(type) {
+Transform3DRecorder::Transform3DRecorder(
+ GraphicsContext& context,
+ DisplayItem::Type type,
+ const TransformationMatrix& transform,
+ const FloatPoint3D& transformOrigin,
+ const LayoutRect& visualRect,
+ const WTF::String& debugName,
+ bool paintedOutputOfObjectHasNoEffectRegardlessOfSize)
+ : m_context(context),
+ m_client(visualRect,
+ debugName,
+ paintedOutputOfObjectHasNoEffectRegardlessOfSize),
+ m_type(type) {
DCHECK(DisplayItem::isTransform3DType(type));
m_skipRecordingForIdentityTransform = transform.isIdentity();
« no previous file with comments | « third_party/WebKit/Source/core/paint/Transform3DRecorder.h ('k') | third_party/WebKit/Source/core/paint/TransformRecorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698