| Index: third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| index 83d7d65831a467e2b0bac6162ba40086e393612f..5ae2f3c2dc5b16fdd06fd4b07743358124dfa8ed 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyleTest.cpp
|
| @@ -12,8 +12,8 @@ namespace blink {
|
|
|
| TEST(ComputedStyleTest, ShapeOutsideBoxEqual)
|
| {
|
| - RefPtrWillBeRawPtr<ShapeValue> shape1 = ShapeValue::createBoxShapeValue(ContentBox);
|
| - RefPtrWillBeRawPtr<ShapeValue> shape2 = ShapeValue::createBoxShapeValue(ContentBox);
|
| + RawPtr<ShapeValue> shape1 = ShapeValue::createBoxShapeValue(ContentBox);
|
| + RawPtr<ShapeValue> shape2 = ShapeValue::createBoxShapeValue(ContentBox);
|
| RefPtr<ComputedStyle> style1 = ComputedStyle::create();
|
| RefPtr<ComputedStyle> style2 = ComputedStyle::create();
|
| style1->setShapeOutside(shape1);
|
| @@ -25,8 +25,8 @@ TEST(ComputedStyleTest, ShapeOutsideCircleEqual)
|
| {
|
| RefPtr<BasicShapeCircle> circle1 = BasicShapeCircle::create();
|
| RefPtr<BasicShapeCircle> circle2 = BasicShapeCircle::create();
|
| - RefPtrWillBeRawPtr<ShapeValue> shape1 = ShapeValue::createShapeValue(circle1, ContentBox);
|
| - RefPtrWillBeRawPtr<ShapeValue> shape2 = ShapeValue::createShapeValue(circle2, ContentBox);
|
| + RawPtr<ShapeValue> shape1 = ShapeValue::createShapeValue(circle1, ContentBox);
|
| + RawPtr<ShapeValue> shape2 = ShapeValue::createShapeValue(circle2, ContentBox);
|
| RefPtr<ComputedStyle> style1 = ComputedStyle::create();
|
| RefPtr<ComputedStyle> style2 = ComputedStyle::create();
|
| style1->setShapeOutside(shape1);
|
|
|