OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/controls/focus_ring.h" | 5 #include "ui/views/controls/focus_ring.h" |
6 | 6 |
7 #include "ui/gfx/canvas.h" | 7 #include "ui/gfx/canvas.h" |
8 #include "ui/native_theme/native_theme.h" | 8 #include "ui/native_theme/native_theme.h" |
9 #include "ui/views/controls/focusable_border.h" | 9 #include "ui/views/controls/focusable_border.h" |
10 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 paint.setStyle(SkPaint::kStroke_Style); | 80 paint.setStyle(SkPaint::kStroke_Style); |
81 paint.setStrokeWidth(kFocusHaloThicknessDp); | 81 paint.setStrokeWidth(kFocusHaloThicknessDp); |
82 gfx::RectF rect(GetLocalBounds()); | 82 gfx::RectF rect(GetLocalBounds()); |
83 rect.Inset(gfx::InsetsF(kFocusHaloThicknessDp / 2.f)); | 83 rect.Inset(gfx::InsetsF(kFocusHaloThicknessDp / 2.f)); |
84 canvas->DrawRoundRect(rect, kFocusHaloCornerRadiusDp, paint); | 84 canvas->DrawRoundRect(rect, kFocusHaloCornerRadiusDp, paint); |
85 } | 85 } |
86 | 86 |
87 FocusRing::FocusRing() | 87 FocusRing::FocusRing() |
88 : override_color_id_(ui::NativeTheme::kColorId_NumColors) { | 88 : override_color_id_(ui::NativeTheme::kColorId_NumColors) { |
89 // A layer is necessary to paint beyond the parent's bounds. | 89 // A layer is necessary to paint beyond the parent's bounds. |
90 SetPaintToLayer(true); | 90 SetPaintToLayer(); |
91 layer()->SetFillsBoundsOpaquely(false); | 91 layer()->SetFillsBoundsOpaquely(false); |
92 } | 92 } |
93 | 93 |
94 FocusRing::~FocusRing() {} | 94 FocusRing::~FocusRing() {} |
95 | 95 |
96 } // namespace views | 96 } // namespace views |
OLD | NEW |