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

Unified Diff: ios/chrome/browser/payments/shipping_address_selection_view_controller.mm

Issue 2710683012: [Payment Request] Payment request summary view pending state (Closed)
Patch Set: rebase Created 3 years, 10 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: ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
diff --git a/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm b/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
index 8640d1d490ccec47ec389d2aa46da8c8c941b35d..0d887cce1ce85184989086fb5b1560283c06b3be 100644
--- a/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
+++ b/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
@@ -69,7 +69,7 @@ typedef NS_ENUM(NSInteger, ItemType) {
@implementation ShippingAddressSelectionViewController
-@synthesize isLoading = _isLoading;
+@synthesize pending = _pending;
@synthesize errorMessage = _errorMessage;
@synthesize delegate = _delegate;
@@ -104,7 +104,7 @@ typedef NS_ENUM(NSInteger, ItemType) {
[model addSectionWithIdentifier:SectionIdentifierShippingAddress];
- if (_isLoading) {
+ if (_pending) {
StatusItem* statusItem = [[StatusItem alloc] initWithType:ItemTypeSpinner];
statusItem.text =
l10n_util::GetNSString(IDS_IOS_PAYMENT_REQUEST_CHECKING_LABEL);

Powered by Google App Engine
This is Rietveld 408576698