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

Unified Diff: ios/chrome/browser/ui/suggestions/suggestions_expandable_item_unittest.mm

Issue 2633243003: Use ARC for Suggestions tests (Closed)
Patch Set: Created 3 years, 11 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/suggestions/suggestions_expandable_item_unittest.mm
diff --git a/ios/chrome/browser/ui/suggestions/suggestions_expandable_item_unittest.mm b/ios/chrome/browser/ui/suggestions/suggestions_expandable_item_unittest.mm
index 906abf7d98b26403e80db26e21b82d2a59565c99..0fe5c97b5a33f1c8e4b2437cbe6f642e7ce5dfff 100644
--- a/ios/chrome/browser/ui/suggestions/suggestions_expandable_item_unittest.mm
+++ b/ios/chrome/browser/ui/suggestions/suggestions_expandable_item_unittest.mm
@@ -4,11 +4,14 @@
#import "ios/chrome/browser/ui/suggestions/suggestions_expandable_item.h"
-#import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h"
#include "testing/gtest/include/gtest/gtest.h"
#import "third_party/ocmock/OCMock/OCMock.h"
#include "third_party/ocmock/gtest_support.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
// Test subclass of the SuggestionsExpandableCell.
@interface TestSuggestionsExpandableCell : SuggestionsExpandableCell

Powered by Google App Engine
This is Rietveld 408576698