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

Unified Diff: ios/chrome/test/base/perf_test_ios.mm

Issue 2881273002: [ObjC ARC] Converts ios/chrome/test/base:perf_test_support to ARC. (Closed)
Patch Set: Created 3 years, 7 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/test/base/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/test/base/perf_test_ios.mm
diff --git a/ios/chrome/test/base/perf_test_ios.mm b/ios/chrome/test/base/perf_test_ios.mm
index 46fb8e2a837fa6610d2cc148c7d18326b4da5f60..26a2c43b3837737e4c6de63390dc07d6537c20d6 100644
--- a/ios/chrome/test/base/perf_test_ios.mm
+++ b/ios/chrome/test/base/perf_test_ios.mm
@@ -7,6 +7,10 @@
#import "ios/chrome/browser/web/chrome_web_client.h"
#import "ios/chrome/test/base/perf_test_ios.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
PerfTest::PerfTest(std::string testGroup)
: BlockCleanupTest(),
testGroup_(testGroup),
« no previous file with comments | « ios/chrome/test/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698