| Index: third_party/WebKit/Source/core/css/CSSCalculationValueTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCalculationValueTest.cpp b/third_party/WebKit/Source/core/css/CSSCalculationValueTest.cpp
|
| index 0b0810bcc014c8429f45ef95019a377657e51c55..e1262d1372050e8353eea1fe54990f375b984e04 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCalculationValueTest.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSCalculationValueTest.cpp
|
| @@ -47,7 +47,7 @@ void PrintTo(const CSSLengthArray& lengthArray, ::std::ostream* os)
|
|
|
| namespace {
|
|
|
| -void testAccumulatePixelsAndPercent(const CSSToLengthConversionData& conversionData, PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> expression, float expectedPixels, float expectedPercent)
|
| +void testAccumulatePixelsAndPercent(const CSSToLengthConversionData& conversionData, RawPtr<CSSCalcExpressionNode> expression, float expectedPixels, float expectedPercent)
|
| {
|
| PixelsAndPercent value(0, 0);
|
| expression->accumulatePixelsAndPercent(conversionData, value);
|
| @@ -65,7 +65,7 @@ void initLengthArray(CSSLengthArray& lengthArray)
|
| CSSLengthArray& setLengthArray(CSSLengthArray& lengthArray, String text)
|
| {
|
| initLengthArray(lengthArray);
|
| - RefPtrWillBeRawPtr<MutableStylePropertySet> propertySet = MutableStylePropertySet::create(HTMLQuirksMode);
|
| + RawPtr<MutableStylePropertySet> propertySet = MutableStylePropertySet::create(HTMLQuirksMode);
|
| propertySet->setProperty(CSSPropertyLeft, text);
|
| toCSSPrimitiveValue(propertySet->getPropertyCSSValue(CSSPropertyLeft).get())->accumulateLengthArray(lengthArray);
|
| return lengthArray;
|
|
|