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

Unified Diff: ios/chrome/app/startup/setup_debugging.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/register_experimental_settings.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/app/startup/setup_debugging.mm
diff --git a/ios/chrome/app/startup/setup_debugging.mm b/ios/chrome/app/startup/setup_debugging.mm
index b54a123d6c0f5f92f869f444fe65bc383e0b0088..d918ccb836971567d2034d6cf317a53de7340921 100644
--- a/ios/chrome/app/startup/setup_debugging.mm
+++ b/ios/chrome/app/startup/setup_debugging.mm
@@ -7,6 +7,10 @@
#include "base/logging.h"
#include "components/crash/core/common/objc_zombie.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
@implementation SetupDebugging
+ (void)setUpDebuggingOptions {
« no previous file with comments | « ios/chrome/app/startup/register_experimental_settings.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698