| Index: third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| index 0ee0134c9557c3b3294e32f0b1feafc635672130..afb538671241d14b15885a49021790fe5592f604 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| @@ -74,7 +74,7 @@ void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& na
|
| if (!hasAttribute(colorAttr)) {
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid);
|
|
|
| - RefPtrWillBeRawPtr<CSSColorValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);
|
| + RawPtr<CSSColorValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);
|
| style->setProperty(CSSPropertyBorderColor, darkGrayValue);
|
| style->setProperty(CSSPropertyBackgroundColor, darkGrayValue);
|
| }
|
|
|