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

Unified Diff: third_party/WebKit/Source/core/paint/RoundedInnerRectClipper.h

Issue 2842983002: [LayoutNG] Paint inlines from the fragment tree
Patch Set: Rebase w/HEAD Created 3 years, 7 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/RoundedInnerRectClipper.h
diff --git a/third_party/WebKit/Source/core/paint/RoundedInnerRectClipper.h b/third_party/WebKit/Source/core/paint/RoundedInnerRectClipper.h
index fb82d548900a48fff7f7549dd00d0015f36a8e36..adac5c9224378abbcccf759755fdf1471a529328 100644
--- a/third_party/WebKit/Source/core/paint/RoundedInnerRectClipper.h
+++ b/third_party/WebKit/Source/core/paint/RoundedInnerRectClipper.h
@@ -12,7 +12,6 @@ namespace blink {
class FloatRoundedRect;
class LayoutRect;
-class LayoutObject;
struct PaintInfo;
enum RoundedInnerRectClipperBehavior { kApplyToDisplayList, kApplyToContext };
@@ -21,7 +20,7 @@ class RoundedInnerRectClipper {
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
public:
- RoundedInnerRectClipper(const LayoutObject&,
+ RoundedInnerRectClipper(const DisplayItemClient&,
const PaintInfo&,
const LayoutRect&,
const FloatRoundedRect& clip_rect,
@@ -29,7 +28,7 @@ class RoundedInnerRectClipper {
~RoundedInnerRectClipper();
private:
- const LayoutObject& layout_object_;
+ const DisplayItemClient& display_item_;
const PaintInfo& paint_info_;
bool use_paint_controller_;
DisplayItem::Type clip_type_;

Powered by Google App Engine
This is Rietveld 408576698