| Index: third_party/WebKit/Source/web/LinkHighlightImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/LinkHighlightImpl.cpp b/third_party/WebKit/Source/web/LinkHighlightImpl.cpp
|
| index 39da22bb47af01b8d382cb6a77a8eaa73a78c066..edb360a04620832ca575b958185f82aef4d3d0af 100644
|
| --- a/third_party/WebKit/Source/web/LinkHighlightImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/LinkHighlightImpl.cpp
|
| @@ -271,7 +271,7 @@ void LinkHighlightImpl::paintContents(WebDisplayItemList* webDisplayItemList, We
|
| paint.setStyle(SkPaint::kFill_Style);
|
| paint.setFlags(SkPaint::kAntiAlias_Flag);
|
| paint.setColor(m_node->layoutObject()->style()->tapHighlightColor().rgb());
|
| - canvas->drawPath(m_path.skPath(), paint);
|
| + canvas->drawPath(m_path.getSkPath(), paint);
|
|
|
| RefPtr<const SkPicture> picture = adoptRef(recorder.endRecording());
|
| webDisplayItemList->appendDrawingItem(WebRect(visualRect.x(), visualRect.y(), visualRect.width(), visualRect.height()), picture.get());
|
|
|