| 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_;
|
|
|