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

Unified Diff: ios/chrome/browser/native_app_launcher/native_app_infobar_controller_unittest.mm

Issue 2553973003: [ObjC ARC] Converts ios/chrome/browser/native_app_launcher:unit_tests to ARC.Automatically genera… (Closed)
Patch Set: Created 4 years 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/native_app_launcher/native_app_infobar_controller_unittest.mm
diff --git a/ios/chrome/browser/native_app_launcher/native_app_infobar_controller_unittest.mm b/ios/chrome/browser/native_app_launcher/native_app_infobar_controller_unittest.mm
index 888fdb1d48f518829c438b6e0bf26a2cbe3586f8..45b0d5d104b47515487a0a877186c51e6b39c48c 100644
--- a/ios/chrome/browser/native_app_launcher/native_app_infobar_controller_unittest.mm
+++ b/ios/chrome/browser/native_app_launcher/native_app_infobar_controller_unittest.mm
@@ -12,6 +12,10 @@
#import "ios/chrome/browser/native_app_launcher/native_app_navigation_controller_protocol.h"
#include "testing/platform_test.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
@interface NativeAppInfoBarController (Testing)
- (void)infoBarButtonDidPress:(UIButton*)button;
- (void)setInfoBarDelegate:(NativeAppInfoBarDelegate*)delegate;

Powered by Google App Engine
This is Rietveld 408576698