| Index: ui/views/controls/focus_ring.cc
|
| diff --git a/ui/views/controls/focus_ring.cc b/ui/views/controls/focus_ring.cc
|
| index 29adfa0e2207a619b1310df98c028961dec85b54..55ffc3686f015aee44f808fd5a936192296ef5a8 100644
|
| --- a/ui/views/controls/focus_ring.cc
|
| +++ b/ui/views/controls/focus_ring.cc
|
| @@ -70,7 +70,7 @@ void FocusRing::Layout() {
|
| }
|
|
|
| void FocusRing::OnPaint(gfx::Canvas* canvas) {
|
| - SkPaint paint;
|
| + CdlPaint paint;
|
| paint.setAntiAlias(true);
|
| paint.setColor(
|
| SkColorSetA(GetNativeTheme()->GetSystemColor(
|
| @@ -78,7 +78,7 @@ void FocusRing::OnPaint(gfx::Canvas* canvas) {
|
| ? override_color_id_
|
| : ui::NativeTheme::kColorId_FocusedBorderColor),
|
| 0x66));
|
| - paint.setStyle(SkPaint::kStroke_Style);
|
| + paint.setStyle(CdlPaint::kStroke_Style);
|
| paint.setStrokeWidth(kFocusHaloThicknessDp);
|
| gfx::RectF rect(GetLocalBounds());
|
| rect.Inset(gfx::InsetsF(kFocusHaloThicknessDp / 2.f));
|
|
|