| Index: ui/views/controls/focusable_border.cc
|
| diff --git a/ui/views/controls/focusable_border.cc b/ui/views/controls/focusable_border.cc
|
| index c3a4af47e54a705790b15464d1615df202a731fd..072a2488c6d8a26583e7a4ca35000cb1cb4796ec 100644
|
| --- a/ui/views/controls/focusable_border.cc
|
| +++ b/ui/views/controls/focusable_border.cc
|
| @@ -64,6 +64,10 @@ gfx::Size FocusableBorder::GetMinimumSize() const {
|
| return gfx::Size();
|
| }
|
|
|
| +void FocusableBorder::ResetInsets() {
|
| + SetInsets(kTopInsetSize, kLeftInsetSize, kBottomInsetSize, kRightInsetSize);
|
| +}
|
| +
|
| void FocusableBorder::SetInsets(int top, int left, int bottom, int right) {
|
| insets_.Set(top, left, bottom, right);
|
| }
|
|
|