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

Unified Diff: ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm

Issue 2949103008: [ObjC ARC] Converts ios/chrome/browser/native_app_launcher:native_app_launcher to ARC. (Closed)
Patch Set: missing weak Created 3 years, 6 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/chrome/browser/native_app_launcher/ios_appstore_ids.mm
diff --git a/ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm b/ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm
index 672eaa3aa32e0f8833cf537e21669aa7058ffae6..330ee3c455c8c0088ead5c9c1bcda8a8f3209871 100644
--- a/ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm
+++ b/ios/chrome/browser/native_app_launcher/ios_appstore_ids.mm
@@ -4,6 +4,10 @@
#include "ios/chrome/browser/native_app_launcher/ios_appstore_ids.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
const char kIOSAppStoreGmail[] = "422689480";
const char kIOSAppStoreGoogleDocs[] = "842842640";
const char kIOSAppStoreGoogleDrive[] = "507874739";

Powered by Google App Engine
This is Rietveld 408576698