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

Unified Diff: ios/chrome/browser/ui/tab_switcher/tab_switcher_view.h

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_view.h
diff --git a/ios/chrome/browser/ui/tab_switcher/tab_switcher_view.h b/ios/chrome/browser/ui/tab_switcher/tab_switcher_view.h
index 950266cb0574aaa94949a25a1668c4ed7fe9f0a5..f601efc6fff67e9778daa8842414d31444239f32 100644
--- a/ios/chrome/browser/ui/tab_switcher/tab_switcher_view.h
+++ b/ios/chrome/browser/ui/tab_switcher/tab_switcher_view.h
@@ -28,10 +28,11 @@ enum NewTabButtonStyle { UNINITIALIZED, BLUE, GRAY, HIDDEN };
@interface TabSwitcherView : UIView<UIScrollViewDelegate>
-@property(nonatomic, readonly) TabSwitcherHeaderView* headerView;
-@property(nonatomic, readonly) UIScrollView* scrollView;
+@property(unsafe_unretained, nonatomic, readonly)
+ TabSwitcherHeaderView* headerView;
+@property(unsafe_unretained, nonatomic, readonly) UIScrollView* scrollView;
-@property(nonatomic, assign) id<TabSwitcherViewDelegate> delegate;
+@property(nonatomic, unsafe_unretained) id<TabSwitcherViewDelegate> delegate;
// Select the panel at the given index, updating both the header and content.
// The panel selection will be animated if VoiceOver is disabled.

Powered by Google App Engine
This is Rietveld 408576698