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

Unified Diff: ios/chrome/app/startup/ios_chrome_main_delegate.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/ios_chrome_main.mm ('k') | ios/chrome/app/startup/network_stack_setup.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_delegate.mm
diff --git a/ios/chrome/app/startup/ios_chrome_main_delegate.mm b/ios/chrome/app/startup/ios_chrome_main_delegate.mm
index 2ee0e0bcc891b9cd7d03951d70cb8ca528e04a09..2d2f02322be8f6be926dab49a8f20c3e825b7d8e 100644
--- a/ios/chrome/app/startup/ios_chrome_main_delegate.mm
+++ b/ios/chrome/app/startup/ios_chrome_main_delegate.mm
@@ -8,6 +8,10 @@
#include "ios/chrome/browser/chrome_paths.h"
#include "third_party/skia/include/core/SkGraphics.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
IOSChromeMainDelegate::IOSChromeMainDelegate() {}
IOSChromeMainDelegate::~IOSChromeMainDelegate() {}
« no previous file with comments | « ios/chrome/app/startup/ios_chrome_main.mm ('k') | ios/chrome/app/startup/network_stack_setup.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698