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

Unified Diff: ios/chrome/browser/geolocation/omnibox_geolocation_config.mm

Issue 2528003002: [ObjC ARC] Converts ios/chrome/browser/geolocation:geolocation to ARC.Automatically generated ARC… (Closed)
Patch Set: comments, cleanup Created 4 years, 1 month 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/chrome/browser/geolocation/omnibox_geolocation_config.mm
diff --git a/ios/chrome/browser/geolocation/omnibox_geolocation_config.mm b/ios/chrome/browser/geolocation/omnibox_geolocation_config.mm
index 8642497fdfc68fe67f9bfbd9245447e3f5b02ceb..f411c1a74083ea4a4d39ab300c65be3d57705a42 100644
--- a/ios/chrome/browser/geolocation/omnibox_geolocation_config.mm
+++ b/ios/chrome/browser/geolocation/omnibox_geolocation_config.mm
@@ -12,6 +12,10 @@
#include "base/strings/sys_string_conversions.h"
#include "url/gurl.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
NSString* const kEligibleDomainsKey = @"EligibleDomains";

Powered by Google App Engine
This is Rietveld 408576698