Chromium Code Reviews| 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( |