| Index: Source/web/LinkHighlight.cpp
|
| diff --git a/Source/web/LinkHighlight.cpp b/Source/web/LinkHighlight.cpp
|
| index 02427c9181cbe358b868d3f648e1bf9c41a09049..f5a11e20402c45a2287dfdbca070c50b775d8a03 100644
|
| --- a/Source/web/LinkHighlight.cpp
|
| +++ b/Source/web/LinkHighlight.cpp
|
| @@ -252,8 +252,12 @@ bool LinkHighlight::computeHighlightLayerPathAndPosition(RenderLayer* compositin
|
| return pathHasChanged;
|
| }
|
|
|
| -void LinkHighlight::paintContents(WebCanvas* canvas, const WebRect& webClipRect, bool, WebFloatRect&,
|
| - WebContentLayerClient::GraphicsContextStatus contextStatus)
|
| +void LinkHighlight::paintContents(WebCanvas* canvas, const WebRect& webClipRect, bool canPaintLCDText, WebFloatRect&, WebContentLayerClient::GraphicsContextStatus contextStatus)
|
| +{
|
| + paintContents(canvas, webClipRect, canPaintLCDText, contextStatus);
|
| +}
|
| +
|
| +void LinkHighlight::paintContents(WebCanvas* canvas, const WebRect& webClipRect, bool, WebContentLayerClient::GraphicsContextStatus contextStatus)
|
| {
|
| if (!m_node || !m_node->renderer())
|
| return;
|
|
|