| 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 b2da33b7ab9ba63c37db73d4e24e754b365921c5..cae0830e5e92858247d29ac3cdb5dae464e5c7ad 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1656,6 +1656,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; }
|
| @@ -1925,6 +1927,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;
|
|
|