| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index ce924f24afd482f8ff3cff9f1116c26e2b2ee415..b7736f2757362ed6333e897aea8d3f3776760dd4 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1658,6 +1658,8 @@ public:
|
| bool hasAuthorBackground() const { return rareNonInheritedData->m_hasAuthorBackground; };
|
| bool hasAuthorBorder() const { return rareNonInheritedData->m_hasAuthorBorder; };
|
|
|
| + void addPaintImage(StyleImage*);
|
| +
|
| // Initial values for all the properties
|
| static EBorderCollapse initialBorderCollapse() { return BorderCollapseSeparate; }
|
| static EBorderStyle initialBorderStyle() { return BorderStyleNone; }
|
| @@ -1927,6 +1929,7 @@ private:
|
| bool diffNeedsFullLayout(const ComputedStyle& other) const;
|
| bool diffNeedsPaintInvalidationLayer(const ComputedStyle& other) const;
|
| bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const;
|
| + bool diffNeedsPaintInvalidationObjectForPaintImage(const StyleImage*, const ComputedStyle& other) const;
|
| void updatePropertySpecificDifferences(const ComputedStyle& other, StyleDifference&) const;
|
|
|
| bool requireTransformOrigin(ApplyTransformOrigin applyOrigin, ApplyMotionPath) const;
|
|
|