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

Unified Diff: ios/chrome/browser/about_flags.mm

Issue 2517623002: [ObjC ARC] Converts ios/chrome/browser:about_flags to ARC.Automatically generated ARCMigrate comm… (Closed)
Patch Set: Created 4 years, 1 month 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/browser/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/browser/about_flags.mm
diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
index a802cb390371f2ef36cc09820e04a646a4f35abe..8ea8ebde6b45770b38b059bd4e5baf5babb9174b 100644
--- a/ios/chrome/browser/about_flags.mm
+++ b/ios/chrome/browser/about_flags.mm
@@ -36,6 +36,10 @@
#if !defined(OFFICIAL_BUILD)
#include "components/variations/variations_switches.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
sdefresne 2016/11/21 12:04:18 This is incorrect, this must be after the #endif c
stkhapugin 2016/11/21 15:34:55 Done.
+#error "This file requires ARC support."
+#endif
#endif
namespace {
« no previous file with comments | « ios/chrome/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698