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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.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/FloatClipDisplayItem.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h
index 536f30c0067db73ed632d515b673f7a03ed33624..e9cac36c8d410376233cd70399ec278bb2236439 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h
@@ -16,7 +16,7 @@ class RoundedRect;
class PLATFORM_EXPORT FloatClipDisplayItem final : public PairedBeginDisplayItem {
public:
- FloatClipDisplayItem(const DisplayItemClientWrapper& client, Type type, const FloatRect& clipRect)
+ FloatClipDisplayItem(const DisplayItemClient& client, Type type, const FloatRect& clipRect)
: PairedBeginDisplayItem(client, type, sizeof(*this))
, m_clipRect(clipRect)
{
@@ -43,7 +43,7 @@ private:
class PLATFORM_EXPORT EndFloatClipDisplayItem final : public PairedEndDisplayItem {
public:
- EndFloatClipDisplayItem(const DisplayItemClientWrapper& client, Type type)
+ EndFloatClipDisplayItem(const DisplayItemClient& client, Type type)
: PairedEndDisplayItem(client, type, sizeof(*this))
{
ASSERT(isEndFloatClipType(type));

Powered by Google App Engine
This is Rietveld 408576698