| Index: third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| index 2680fade86ef747798821b84509988ed66d85f9e..d135b7b71a62bcec0e4ea24b8aade6a9756832d5 100644
|
| --- a/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| +++ b/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| @@ -115,8 +115,8 @@ private:
|
| static bool s_shouldNotifyInspector;
|
| static bool s_shouldDeliver;
|
|
|
| - OwnPtrWillBeMember<MutationObserverInterestGroup> m_mutationRecipients;
|
| - RefPtrWillBeMember<MutationRecord> m_mutation;
|
| + Member<MutationObserverInterestGroup> m_mutationRecipients;
|
| + Member<MutationRecord> m_mutation;
|
| };
|
|
|
| unsigned StyleAttributeMutationScope::s_scopeCount = 0;
|
| @@ -270,7 +270,7 @@ String AbstractPropertySetCSSStyleDeclaration::removeProperty(const String& prop
|
| return result;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSValue> AbstractPropertySetCSSStyleDeclaration::getPropertyCSSValueInternal(CSSPropertyID propertyID)
|
| +RawPtr<CSSValue> AbstractPropertySetCSSStyleDeclaration::getPropertyCSSValueInternal(CSSPropertyID propertyID)
|
| {
|
| return propertySet().getPropertyCSSValue(propertyID);
|
| }
|
|
|