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

Unified Diff: components/reading_list/ios/reading_list_model_bridge_observer.mm

Issue 2888163004: [ObjC ARC] Converts components/reading_list/ios:ios to ARC. (Closed)
Patch Set: Reworded todo. Created 3 years, 7 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 | « components/reading_list/ios/reading_list_model_bridge_observer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/reading_list/ios/reading_list_model_bridge_observer.mm
diff --git a/components/reading_list/ios/reading_list_model_bridge_observer.mm b/components/reading_list/ios/reading_list_model_bridge_observer.mm
index a54a1a471f14e790b8a5a887f66c1687882b9534..ff5836ee033c040c5ecdf5eca20a395f13500dbe 100644
--- a/components/reading_list/ios/reading_list_model_bridge_observer.mm
+++ b/components/reading_list/ios/reading_list_model_bridge_observer.mm
@@ -7,6 +7,10 @@
#include "components/reading_list/core/reading_list_entry.h"
#include "components/reading_list/core/reading_list_model.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
ReadingListModelBridge::ReadingListModelBridge(
id<ReadingListModelBridgeObserver> observer,
ReadingListModel* model)
« no previous file with comments | « components/reading_list/ios/reading_list_model_bridge_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698