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

Unified Diff: ios/chrome/browser/payments/cells/page_info_item.mm

Issue 2701923003: [Payment Request] Error message screen (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/cells/page_info_item.mm
diff --git a/ios/chrome/browser/payments/cells/page_info_item.mm b/ios/chrome/browser/payments/cells/page_info_item.mm
index d0527095efefa63df6edd96268a697a333474d11..cc5f57e3a6ca50f92a0fa1e8be8ec36e5e55c22c 100644
--- a/ios/chrome/browser/payments/cells/page_info_item.mm
+++ b/ios/chrome/browser/payments/cells/page_info_item.mm
@@ -11,7 +11,7 @@
#error "This file requires ARC support."
#endif
-NSString* const kPageInfoFaviconImageViewId = @"kPageInfoFaviconImageViewId";
+NSString* const kPageInfoFaviconImageViewID = @"kPageInfoFaviconImageViewID";
namespace {
// Padding used on the top and bottom edges of the cell.
@@ -67,7 +67,7 @@ const CGFloat kHorizontalPadding = 16;
// Favicon
_pageFaviconView = [[UIImageView alloc] initWithFrame:CGRectZero];
_pageFaviconView.translatesAutoresizingMaskIntoConstraints = NO;
- _pageFaviconView.accessibilityIdentifier = kPageInfoFaviconImageViewId;
+ _pageFaviconView.accessibilityIdentifier = kPageInfoFaviconImageViewID;
[self.contentView addSubview:_pageFaviconView];
// Page title

Powered by Google App Engine
This is Rietveld 408576698