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

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

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (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
« no previous file with comments | « ios/chrome/browser/payments/payment_request.mm ('k') | ios/chrome/browser/sessions/session_service.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b43ad8f95114f0e56b05a883a401d9a0240a56ec..30f0a0a241f3c5b2639890eddd0ffcc50144e612 100644
--- a/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
+++ b/ios/chrome/browser/payments/shipping_address_selection_view_controller.mm
@@ -128,7 +128,7 @@ typedef NS_ENUM(NSInteger, ItemType) {
[model addItem:messageItem
toSectionWithIdentifier:SectionIdentifierShippingAddress];
- for (const auto& shippingAddress : _paymentRequest->shipping_profiles()) {
+ for (auto* shippingAddress : _paymentRequest->shipping_profiles()) {
AutofillProfileItem* item =
[[AutofillProfileItem alloc] initWithType:ItemTypeShippingAddress];
item.accessibilityTraits |= UIAccessibilityTraitButton;
« no previous file with comments | « ios/chrome/browser/payments/payment_request.mm ('k') | ios/chrome/browser/sessions/session_service.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698