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

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

Issue 2532533002: [ObjC ARC] Converts ios/chrome/browser/first_run:first_run to ARC.Automatically generated ARCMigr… (Closed)
Patch Set: rebase Created 4 years 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/first_run/BUILD.gn ('k') | ios/chrome/browser/first_run/first_run_configuration.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/first_run/first_run.mm
diff --git a/ios/chrome/browser/first_run/first_run.mm b/ios/chrome/browser/first_run/first_run.mm
index 553cf2003428abbf9aa9815e30afe50736aa3355..4f884549d35022e83ead7172d19b9a8ccd2d8d3d 100644
--- a/ios/chrome/browser/first_run/first_run.mm
+++ b/ios/chrome/browser/first_run/first_run.mm
@@ -10,6 +10,10 @@
#include "components/pref_registry/pref_registry_syncable.h"
#include "ios/chrome/browser/chrome_paths.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
// The absence of kSentinelFile file will tell us it is a first run.
« no previous file with comments | « ios/chrome/browser/first_run/BUILD.gn ('k') | ios/chrome/browser/first_run/first_run_configuration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698