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

Unified Diff: ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_cell.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_panel_cell.h
diff --git a/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_cell.h b/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_cell.h
index cfed23d9df6178bc68fc369e84352e37241a3c98..82d6ab719d52607b2cf5cd4ed609f28041e87a5c 100644
--- a/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_cell.h
+++ b/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_cell.h
@@ -32,7 +32,7 @@ CGFloat tabSwitcherLocalSessionCellTopBarHeight();
+ (NSString*)identifier;
// The cell delegate.
-@property(nonatomic, assign) id<SessionCellDelegate> delegate;
+@property(nonatomic, unsafe_unretained) id<SessionCellDelegate> delegate;
@end
@@ -41,7 +41,7 @@ CGFloat tabSwitcherLocalSessionCellTopBarHeight();
// Returns the top bar of the cell. The top bar holds the favicon and the tab
// title.
-@property(nonatomic, readonly) UIView* topBar;
+@property(unsafe_unretained, nonatomic, readonly) UIView* topBar;
// Sets the cell's appearance using information in |tab|.
// The delegate needs to be set before calling this method.

Powered by Google App Engine
This is Rietveld 408576698