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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h

Issue 1497873002: Make DisplayItemClient an interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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/platform/graphics/paint/TransformDisplayItem.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h
index b4a38695e3f34f31c74ccf173048463748a3d3b3..e05a1b84f9003019da4d89b36922d906b5a5e352 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h
@@ -13,7 +13,7 @@ namespace blink {
class PLATFORM_EXPORT BeginTransformDisplayItem final : public PairedBeginDisplayItem {
public:
- BeginTransformDisplayItem(const DisplayItemClientWrapper& client, const AffineTransform& transform)
+ BeginTransformDisplayItem(const DisplayItemClient& client, const AffineTransform& transform)
: PairedBeginDisplayItem(client, BeginTransform, sizeof(*this))
, m_transform(transform) { }
@@ -39,7 +39,7 @@ private:
class PLATFORM_EXPORT EndTransformDisplayItem final : public PairedEndDisplayItem {
public:
- EndTransformDisplayItem(const DisplayItemClientWrapper& client)
+ EndTransformDisplayItem(const DisplayItemClient& client)
: PairedEndDisplayItem(client, EndTransform, sizeof(*this)) { }
void replay(GraphicsContext&) const override;

Powered by Google App Engine
This is Rietveld 408576698