| Index: third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| index 911b35aed912d03cc38904f46a21360fe4638831..ccb05f4536f0dd2a60545a2979336b3fe67d9faf 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
|
| @@ -329,18 +329,18 @@ void GraphicsContext::compositePicture(sk_sp<SkPicture> picture,
|
|
|
| void GraphicsContext::drawFocusRingPath(const SkPath& path,
|
| const Color& color,
|
| - int width) {
|
| + float width) {
|
| drawPlatformFocusRing(path, m_canvas, color.rgb(), width);
|
| }
|
|
|
| void GraphicsContext::drawFocusRingRect(const SkRect& rect,
|
| const Color& color,
|
| - int width) {
|
| + float width) {
|
| drawPlatformFocusRing(rect, m_canvas, color.rgb(), width);
|
| }
|
|
|
| void GraphicsContext::drawFocusRing(const Path& focusRingPath,
|
| - int width,
|
| + float width,
|
| int offset,
|
| const Color& color) {
|
| // FIXME: Implement support for offset.
|
| @@ -351,7 +351,7 @@ void GraphicsContext::drawFocusRing(const Path& focusRingPath,
|
| }
|
|
|
| void GraphicsContext::drawFocusRing(const Vector<IntRect>& rects,
|
| - int width,
|
| + float width,
|
| int offset,
|
| const Color& color) {
|
| if (contextDisabled())
|
|
|