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

Unified Diff: ios/chrome/app/startup/ios_chrome_main.mm

Issue 2702253002: [ObjC ARC] Converts ios/chrome/app/startup:startup to ARC. (Closed)
Patch Set: 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
« no previous file with comments | « ios/chrome/app/startup/client_registration.mm ('k') | ios/chrome/app/startup/ios_chrome_main_delegate.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/app/startup/ios_chrome_main.mm
diff --git a/ios/chrome/app/startup/ios_chrome_main.mm b/ios/chrome/app/startup/ios_chrome_main.mm
index bbd9cbba569731c90e6dbec66071c5ecd5e759a1..d3ff28ae32739cf1d28c5d67213af68c08a6c5d0 100644
--- a/ios/chrome/app/startup/ios_chrome_main.mm
+++ b/ios/chrome/app/startup/ios_chrome_main.mm
@@ -13,6 +13,10 @@
#include "base/time/time.h"
#include "ios/web/public/app/web_main_runner.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
base::Time* g_start_time;
} // namespace
« no previous file with comments | « ios/chrome/app/startup/client_registration.mm ('k') | ios/chrome/app/startup/ios_chrome_main_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698