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

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

Issue 2512193002: [ObjC ARC] Converts ios/chrome/browser:browser_impl to ARC.Automatically generated ARCMigrate com… (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/ios_chrome_main_parts.mm
diff --git a/ios/chrome/browser/ios_chrome_main_parts.mm b/ios/chrome/browser/ios_chrome_main_parts.mm
index d80cd693e64aeda170aad56704d3c5d47f434f6d..92f8cd1a700a67625f6731fc014aecd9191bae3b 100644
--- a/ios/chrome/browser/ios_chrome_main_parts.mm
+++ b/ios/chrome/browser/ios_chrome_main_parts.mm
@@ -57,6 +57,10 @@
#if defined(ENABLE_RLZ)
#include "components/rlz/rlz_tracker.h" // nogncheck
#include "ios/chrome/browser/rlz/rlz_tracker_delegate_impl.h" // nogncheck
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
sdefresne 2016/11/21 12:35:18 This should be out of the #endif corresponding to
stkhapugin 2016/11/21 15:33:13 Done. Thanks for the good catch!
+#error "This file requires ARC support."
+#endif
#endif
IOSChromeMainParts::IOSChromeMainParts(
« 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