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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
index 13201da5de7ddc0df4b40622ef7ee1e70ea70e27..36e62017167d8b6cff3cca20e6c7fc7a7499d60d 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
@@ -1517,7 +1517,7 @@ TEST_F(AutofillDialogControllerTest, IconReservedForCreditCardField) {
};
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
for (size_t i = 0; i < arraysize(kSupportedCardIdrs); ++i) {
- SCOPED_TRACE(base::IntToString(i));
+ SCOPED_TRACE(base::SizeTToString(i));
gfx::Image supported_card_icon = rb.GetImageNamed(kSupportedCardIdrs[i]);
EXPECT_GE(placeholder_icon.Width(), supported_card_icon.Width());
EXPECT_GE(placeholder_icon.Height(), supported_card_icon.Height());
« no previous file with comments | « chrome/browser/task_manager/task_manager.cc ('k') | chrome/browser/ui/libgtk2ui/select_file_dialog_impl_kde.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698