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

Unified Diff: ios/web/url_scheme_util.mm

Issue 2202623002: Converts parts of ios/web to ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed extra release Created 4 years, 4 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
Index: ios/web/url_scheme_util.mm
diff --git a/ios/web/url_scheme_util.mm b/ios/web/url_scheme_util.mm
index 945a09a54f79d92fbddd1f75c110fcba27e8df58..d0d405eb48f1f0804e22be7e0885c6ffaa28e9e2 100644
--- a/ios/web/url_scheme_util.mm
+++ b/ios/web/url_scheme_util.mm
@@ -8,6 +8,10 @@
#include "url/gurl.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace web {
bool UrlHasWebScheme(const GURL& url) {

Powered by Google App Engine
This is Rietveld 408576698