Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc

Issue 2971783002: Skeleton for showing "Show all saved passwords row" for Linux/CrOs/Windows platforms (Closed)
Patch Set: more comments adaressed Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698