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

Unified Diff: ios/chrome/test/earl_grey/chrome_util.mm

Issue 2684023003: [ObjC ARC] Converts ios/chrome/test/earl_grey:test_support to ARC. (Closed)
Patch Set: Add __unsafe_unretained 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/test/earl_grey/chrome_util.mm
diff --git a/ios/chrome/test/earl_grey/chrome_util.mm b/ios/chrome/test/earl_grey/chrome_util.mm
index 02a8d31c3b982445c759df1f7c824bab51ae28a6..57c49fc732d47efada9a45769a8bcf5b3a6f62a7 100644
--- a/ios/chrome/test/earl_grey/chrome_util.mm
+++ b/ios/chrome/test/earl_grey/chrome_util.mm
@@ -11,6 +11,10 @@
#import "ios/testing/wait_util.h"
#import "ios/web/public/test/earl_grey/web_view_matchers.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
const NSTimeInterval kWaitForToolbarAnimationTimeout = 1.0;
} // namespace
« ios/chrome/test/earl_grey/chrome_earl_grey.h ('K') | « ios/chrome/test/earl_grey/chrome_test_case.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698