Chromium Code Reviews| Index: Source/web/ChromeClientImpl.cpp |
| =================================================================== |
| --- Source/web/ChromeClientImpl.cpp (revision 162906) |
| +++ Source/web/ChromeClientImpl.cpp (working copy) |
| @@ -716,7 +716,7 @@ |
| void ChromeClientImpl::setCursor(const WebCore::Cursor& cursor) |
| { |
| - setCursor(WebCursorInfo(cursor)); |
| + setCursor(WebCursorInfo(rasterizeSVGCursor(cursor, m_webView->deviceScaleFactor()))); |
|
pdr.
2013/12/04 20:55:40
Is this codepath only used for SVG cursors?
Evan Wallace
2013/12/04 21:31:09
Yes, rasterizeSVGCursor() will only rasterize the
|
| } |
| void ChromeClientImpl::setCursor(const WebCursorInfo& cursor) |