| Index: third_party/WebKit/Source/core/css/StylePropertySerializer.h
|
| diff --git a/third_party/WebKit/Source/core/css/StylePropertySerializer.h b/third_party/WebKit/Source/core/css/StylePropertySerializer.h
|
| index b751f0e98c3b3b4f6ab786b3df3589b7a6261fc6..ef843157a35bb066705c06d0152ad9eca9c289db 100644
|
| --- a/third_party/WebKit/Source/core/css/StylePropertySerializer.h
|
| +++ b/third_party/WebKit/Source/core/css/StylePropertySerializer.h
|
| @@ -82,7 +82,7 @@ private:
|
| bool isValid() const { return m_value; }
|
|
|
| private:
|
| - RawPtrWillBeMember<const CSSValue> m_value;
|
| + Member<const CSSValue> m_value;
|
| CSSPropertyID m_id;
|
| bool m_isImportant;
|
| bool m_isImplicit;
|
| @@ -111,7 +111,7 @@ private:
|
| bool hasExpandedAllProperty() const { return hasAllProperty() && m_needToExpandAll; }
|
| bool hasAllProperty() const { return m_allIndex != -1; }
|
|
|
| - RawPtrWillBeMember<const StylePropertySet> m_propertySet;
|
| + Member<const StylePropertySet> m_propertySet;
|
| int m_allIndex;
|
| BitArray<numCSSProperties> m_longhandPropertyUsed;
|
| bool m_needToExpandAll;
|
|
|