| Index: third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/ThemePainter.cpp b/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| index b9658837aaecb06d476887d1a4b191b592685f98..19de8828911097b06e946956623649c7dce2398b 100644
|
| --- a/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/ThemePainter.cpp
|
| @@ -300,7 +300,7 @@ void ThemePainter::paintSliderTicks(const LayoutObject& o, const PaintInfo& pain
|
| tickRegionSideMargin = trackBounds.y() + (thumbSize.width() - tickSize.width() * zoomFactor) / 2.0;
|
| tickRegionWidth = trackBounds.height() - thumbSize.width();
|
| }
|
| - RefPtrWillBeRawPtr<HTMLDataListOptionsCollection> options = dataList->options();
|
| + RawPtr<HTMLDataListOptionsCollection> options = dataList->options();
|
| for (unsigned i = 0; HTMLOptionElement* optionElement = options->item(i); i++) {
|
| String value = optionElement->value();
|
| if (!input->isValidValue(value))
|
|
|