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

Unified Diff: ios/chrome/browser/ui/tab_switcher/tab_switcher_session_changes.mm

Issue 2810193002: [ObjC ARC] Converts ios/chrome/browser/ui/tab_switcher:tab_switcher to ARC. (Closed)
Patch Set: comment Created 3 years, 8 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/tab_switcher/tab_switcher_session_changes.mm
diff --git a/ios/chrome/browser/ui/tab_switcher/tab_switcher_session_changes.mm b/ios/chrome/browser/ui/tab_switcher/tab_switcher_session_changes.mm
index 5d94e05d02fba6ac3cfce699ea6df45618bbad6b..61c995457fed0cbf0850156745938fc03fc2ae78 100644
--- a/ios/chrome/browser/ui/tab_switcher/tab_switcher_session_changes.mm
+++ b/ios/chrome/browser/ui/tab_switcher/tab_switcher_session_changes.mm
@@ -6,6 +6,10 @@
#import "ios/chrome/browser/ui/tab_switcher/tab_switcher_utils.h"
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
TabSwitcherSessionChanges::TabSwitcherSessionChanges(
std::vector<size_t> const& tabHashesInInitialState,
std::vector<size_t> const& tabHashesInFinalState) {

Powered by Google App Engine
This is Rietveld 408576698