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

Unified Diff: chrome/browser/ui/views/payments/payment_request_item_list_unittest.cc

Issue 2855203002: [Payments] Display the shipping option error alongside the address (Closed)
Patch Set: android test fix Created 3 years, 7 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/views/payments/payment_request_item_list_unittest.cc
diff --git a/chrome/browser/ui/views/payments/payment_request_item_list_unittest.cc b/chrome/browser/ui/views/payments/payment_request_item_list_unittest.cc
index 2aaa5ed54c8094e91f4174a07b601eee5edb7af6..313c11cb090d0e63ea16214581b0839aa77f83dc 100644
--- a/chrome/browser/ui/views/payments/payment_request_item_list_unittest.cc
+++ b/chrome/browser/ui/views/payments/payment_request_item_list_unittest.cc
@@ -31,7 +31,9 @@ class TestListItem : public PaymentRequestItemList::Item {
return base::MakeUnique<views::View>();
}
- bool CanBeSelected() const override { return true; }
+ bool IsEnabled() override { return true; }
+
+ bool CanBeSelected() override { return true; }
void PerformSelectionFallback() override {}

Powered by Google App Engine
This is Rietveld 408576698