| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/browser/ui/autofill/autofill_popup_layout_model.h" | 5 #include "chrome/browser/ui/autofill/autofill_popup_layout_model.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 .GetImageNamed(IDR_AUTOFILL_CC_AMEX) | 103 .GetImageNamed(IDR_AUTOFILL_CC_AMEX) |
| 104 .Width(), | 104 .Width(), |
| 105 layout_model()->RowWidthWithoutText(2, /* with_label= */ false)); | 105 layout_model()->RowWidthWithoutText(2, /* with_label= */ false)); |
| 106 EXPECT_EQ(base_size + subtext_increase + | 106 EXPECT_EQ(base_size + subtext_increase + |
| 107 AutofillPopupLayoutModel::kIconPadding + | 107 AutofillPopupLayoutModel::kIconPadding + |
| 108 ui::ResourceBundle::GetSharedInstance() | 108 ui::ResourceBundle::GetSharedInstance() |
| 109 .GetImageNamed(IDR_AUTOFILL_CC_GENERIC) | 109 .GetImageNamed(IDR_AUTOFILL_CC_GENERIC) |
| 110 .Width(), | 110 .Width(), |
| 111 layout_model()->RowWidthWithoutText(3, /* with_label= */ true)); | 111 layout_model()->RowWidthWithoutText(3, /* with_label= */ true)); |
| 112 EXPECT_EQ(base_size + AutofillPopupLayoutModel::kHttpWarningNamePadding + | 112 EXPECT_EQ(base_size + AutofillPopupLayoutModel::kHttpWarningNamePadding + |
| 113 AutofillPopupLayoutModel::kHttpWarningIconPadding + | 113 AutofillPopupLayoutModel::kRightHandSideIconPapping + |
| 114 layout_model()->GetIconImage(4).width(), | 114 layout_model()->GetIconImage(4).width(), |
| 115 layout_model()->RowWidthWithoutText(4, /* with_label= */ true)); | 115 layout_model()->RowWidthWithoutText(4, /* with_label= */ true)); |
| 116 } | 116 } |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 } // namespace autofill | 119 } // namespace autofill |
| OLD | NEW |