| Index: Source/core/css/StylePropertySet.cpp
|
| diff --git a/Source/core/css/StylePropertySet.cpp b/Source/core/css/StylePropertySet.cpp
|
| index b7e79728b1be5ad7c0aaa32a8fa764f812a98dd8..055e83d8ce935deca1354ed7b47a4ef04385efed 100644
|
| --- a/Source/core/css/StylePropertySet.cpp
|
| +++ b/Source/core/css/StylePropertySet.cpp
|
| @@ -431,7 +431,7 @@ void MutableStylePropertySet::clear()
|
| m_propertyVector.clear();
|
| }
|
|
|
| -PassRefPtr<MutableStylePropertySet> StylePropertySet::copyBlockProperties() const
|
| +PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyBlockProperties() const
|
| {
|
| return copyPropertiesInSet(blockProperties());
|
| }
|
| @@ -514,12 +514,12 @@ void MutableStylePropertySet::removeEquivalentProperties(const CSSStyleDeclarati
|
| removeProperty(propertiesToRemove[i]);
|
| }
|
|
|
| -PassRefPtr<MutableStylePropertySet> StylePropertySet::mutableCopy() const
|
| +PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::mutableCopy() const
|
| {
|
| return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(*this));
|
| }
|
|
|
| -PassRefPtr<MutableStylePropertySet> StylePropertySet::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const
|
| +PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const
|
| {
|
| WillBeHeapVector<CSSProperty, 256> list;
|
| list.reserveInitialCapacity(properties.size());
|
| @@ -585,12 +585,12 @@ void StylePropertySet::showStyle()
|
| }
|
| #endif
|
|
|
| -PassRefPtr<MutableStylePropertySet> MutableStylePropertySet::create(CSSParserMode cssParserMode)
|
| +PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(CSSParserMode cssParserMode)
|
| {
|
| return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(cssParserMode));
|
| }
|
|
|
| -PassRefPtr<MutableStylePropertySet> MutableStylePropertySet::create(const CSSProperty* properties, unsigned count)
|
| +PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(const CSSProperty* properties, unsigned count)
|
| {
|
| return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(properties, count));
|
| }
|
|
|