| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/ui/views/autofill/decorated_textfield.h" | 5 #include "chrome/browser/ui/views/autofill/decorated_textfield.h" |
| 6 | 6 |
| 7 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | |
| 8 #include "chrome/browser/ui/views/autofill/tooltip_icon.h" | 7 #include "chrome/browser/ui/views/autofill/tooltip_icon.h" |
| 8 #include "components/autofill/core/browser/ui/autofill_dialog_types.h" |
| 9 #include "ui/gfx/canvas.h" | 9 #include "ui/gfx/canvas.h" |
| 10 #include "ui/views/background.h" | 10 #include "ui/views/background.h" |
| 11 #include "ui/views/controls/button/label_button.h" | 11 #include "ui/views/controls/button/label_button.h" |
| 12 #include "ui/views/controls/focusable_border.h" | 12 #include "ui/views/controls/focusable_border.h" |
| 13 #include "ui/views/controls/textfield/textfield_controller.h" | 13 #include "ui/views/controls/textfield/textfield_controller.h" |
| 14 #include "ui/views/view_targeter.h" | 14 #include "ui/views/view_targeter.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 // Padding around icons inside DecoratedTextfields. | 18 // Padding around icons inside DecoratedTextfields. |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 | 167 |
| 168 void DecoratedTextfield::IconChanged() { | 168 void DecoratedTextfield::IconChanged() { |
| 169 // Don't show the icon if nothing else is showing. | 169 // Don't show the icon if nothing else is showing. |
| 170 icon_view_->SetVisible(editable_ || !text().empty()); | 170 icon_view_->SetVisible(editable_ || !text().empty()); |
| 171 UpdateBorder(); | 171 UpdateBorder(); |
| 172 Layout(); | 172 Layout(); |
| 173 } | 173 } |
| 174 | 174 |
| 175 } // namespace autofill | 175 } // namespace autofill |
| OLD | NEW |