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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.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/Transform3DDisplayItem.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.h
index e0257c927e094be44025d1ea7bf1329862c1e1ea..d480b5cd6da2c479964a54b564b0941f4795bef3 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.h
@@ -16,7 +16,7 @@ namespace blink {
class PLATFORM_EXPORT BeginTransform3DDisplayItem final : public PairedBeginDisplayItem {
public:
BeginTransform3DDisplayItem(
- const DisplayItemClientWrapper& client,
+ const DisplayItemClient& client,
Type type,
const TransformationMatrix& transform,
const FloatPoint3D& transformOrigin)
@@ -52,7 +52,7 @@ private:
class PLATFORM_EXPORT EndTransform3DDisplayItem final : public PairedEndDisplayItem {
public:
- EndTransform3DDisplayItem(const DisplayItemClientWrapper& client, Type type)
+ EndTransform3DDisplayItem(const DisplayItemClient& client, Type type)
: PairedEndDisplayItem(client, type, sizeof(*this))
{
ASSERT(DisplayItem::isEndTransform3DType(type));

Powered by Google App Engine
This is Rietveld 408576698