| Index: third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| index e0a2c77a8136577e2eed8503a7e9512d6985d109..3325599c31aaefcc87fb5ab10a15c841e7ea626d 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| @@ -154,7 +154,7 @@ bool CSSPrimitiveValue::colorIsDerivedFromElement() const
|
| }
|
| }
|
|
|
| -using CSSTextCache = WillBePersistentHeapHashMap<RawPtrWillBeWeakMember<const CSSPrimitiveValue>, String>;
|
| +using CSSTextCache = PersistentHeapHashMap<WeakMember<const CSSPrimitiveValue>, String>;
|
|
|
| static CSSTextCache& cssTextCache()
|
| {
|
| @@ -290,7 +290,7 @@ void CSSPrimitiveValue::init(UnitType type)
|
| m_primitiveUnitType = static_cast<unsigned>(type);
|
| }
|
|
|
| -void CSSPrimitiveValue::init(PassRefPtrWillBeRawPtr<CSSCalcValue> c)
|
| +void CSSPrimitiveValue::init(RawPtr<CSSCalcValue> c)
|
| {
|
| init(UnitType::Calc);
|
| m_hasCachedCSSText = false;
|
|
|