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

Unified Diff: ios/chrome/browser/ui/bookmarks/bookmark_extended_button.mm

Issue 2741413005: [ObjC ARC] Converts ios/chrome/browser/ui/bookmarks:bookmarks_arc to ARC. (Closed)
Patch Set: Created 3 years, 9 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/ui/bookmarks/bookmark_extended_button.mm
diff --git a/ios/chrome/browser/ui/bookmarks/bookmark_extended_button.mm b/ios/chrome/browser/ui/bookmarks/bookmark_extended_button.mm
index 092dab262d4bc4a2bbf094eee532cd6265579498..c691be90947f1c85c368fa0d9583c3cba396a24a 100644
--- a/ios/chrome/browser/ui/bookmarks/bookmark_extended_button.mm
+++ b/ios/chrome/browser/ui/bookmarks/bookmark_extended_button.mm
@@ -6,6 +6,10 @@
#include "base/logging.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
namespace {
// Apple's guidelines indicate that buttons should have a minimum touch area of
// 44pt x 44pt.

Powered by Google App Engine
This is Rietveld 408576698