| Index: Source/core/css/StylePropertySet.h
|
| diff --git a/Source/core/css/StylePropertySet.h b/Source/core/css/StylePropertySet.h
|
| index 549cc9888c47fba3738fb999e6691c980e266210..5a4bc9c6f488c0d741c5f5fc76744afb23d7992a 100644
|
| --- a/Source/core/css/StylePropertySet.h
|
| +++ b/Source/core/css/StylePropertySet.h
|
| @@ -102,14 +102,14 @@ public:
|
| CSSPropertyID getPropertyShorthand(CSSPropertyID) const;
|
| bool isPropertyImplicit(CSSPropertyID) const;
|
|
|
| - PassRefPtr<MutableStylePropertySet> copyBlockProperties() const;
|
| + PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyBlockProperties() const;
|
|
|
| CSSParserMode cssParserMode() const { return static_cast<CSSParserMode>(m_cssParserMode); }
|
|
|
| - PassRefPtr<MutableStylePropertySet> mutableCopy() const;
|
| + PassRefPtrWillBeRawPtr<MutableStylePropertySet> mutableCopy() const;
|
| PassRefPtr<ImmutableStylePropertySet> immutableCopyIfNeeded() const;
|
|
|
| - PassRefPtr<MutableStylePropertySet> copyPropertiesInSet(const Vector<CSSPropertyID>&) const;
|
| + PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyPropertiesInSet(const Vector<CSSPropertyID>&) const;
|
|
|
| String asText() const;
|
|
|
| @@ -195,8 +195,8 @@ inline ImmutableStylePropertySet* toImmutableStylePropertySet(const RefPtr<Style
|
| class MutableStylePropertySet : public StylePropertySet {
|
| public:
|
| ~MutableStylePropertySet() { }
|
| - static PassRefPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode);
|
| - static PassRefPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count);
|
| + static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode);
|
| + static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count);
|
|
|
| unsigned propertyCount() const { return m_propertyVector.size(); }
|
|
|
|
|