| Index: third_party/WebKit/Source/core/style/StyleRareInheritedData.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
|
| index feacd71da794641a139d389e4f6c91b51e4a5a98..fa85c33a44528bd6ac430e3eb513504bd18ef21f 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
|
| @@ -70,7 +70,7 @@ public:
|
| bool shadowDataEquivalent(const StyleRareInheritedData&) const;
|
| bool quotesDataEquivalent(const StyleRareInheritedData&) const;
|
|
|
| - RefPtrWillBePersistent<StyleImage> listStyleImage;
|
| + Persistent<StyleImage> listStyleImage;
|
|
|
| StyleColor textStrokeColor() const { return m_textStrokeColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textStrokeColor); }
|
| StyleColor textFillColor() const { return m_textFillColorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_textFillColor); }
|
| @@ -98,7 +98,7 @@ public:
|
| RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed text drawing.
|
| AtomicString highlight; // Apple-specific extension for custom highlight rendering.
|
|
|
| - RefPtrWillBePersistent<CursorList> cursorData;
|
| + Persistent<CursorList> cursorData;
|
|
|
| Length indent;
|
| float m_effectiveZoom;
|
|
|