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

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

Issue 2706193004: [ObjC ARC] Converts ios/chrome/browser/payments:unit_tests to ARC. (Closed)
Patch Set: 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/payment_request_view_controller_unittest.mm
diff --git a/ios/chrome/browser/payments/payment_request_view_controller_unittest.mm b/ios/chrome/browser/payments/payment_request_view_controller_unittest.mm
index 129cb29fd4d2e9b9f6ddd9df4a347f1a9b19afd2..490e4d3184d7feb5134e7a4ddc04bcb2b54de5b2 100644
--- a/ios/chrome/browser/payments/payment_request_view_controller_unittest.mm
+++ b/ios/chrome/browser/payments/payment_request_view_controller_unittest.mm
@@ -24,6 +24,10 @@
#include "ios/web/public/payments/payment_request.h"
#include "testing/gtest/include/gtest/gtest.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
class PaymentRequestViewControllerTest : public CollectionViewControllerTest {
protected:
CollectionViewController* NewController() override NS_RETURNS_RETAINED {

Powered by Google App Engine
This is Rietveld 408576698