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

Unified Diff: ios/chrome/browser/ui/tabs/tab_strip_view.h

Issue 2942913002: [ObjC ARC] Converts ios/chrome/browser/ui/tabs:tabs to ARC. (Closed)
Patch Set: fix_error Created 3 years, 6 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/tabs/tab_strip_view.h
diff --git a/ios/chrome/browser/ui/tabs/tab_strip_view.h b/ios/chrome/browser/ui/tabs/tab_strip_view.h
index 785a9967502fcf389e793c5a81e02c2cbd6fc6a0..60f46d5f08ab9e97d952790c936cd44563e2ba2d 100644
--- a/ios/chrome/browser/ui/tabs/tab_strip_view.h
+++ b/ios/chrome/browser/ui/tabs/tab_strip_view.h
@@ -28,10 +28,10 @@ extern NSString* const kTabStripViewFrameDidChangeNotification;
// tab overflow behavior.
@interface TabStripView : UIScrollView {
@private
- id<TabStripViewLayoutDelegate> layoutDelegate_;
+ id<TabStripViewLayoutDelegate> __weak layoutDelegate_;
}
-@property(nonatomic, readwrite, assign) id<TabStripViewLayoutDelegate>
+@property(nonatomic, readwrite, weak) id<TabStripViewLayoutDelegate>
layoutDelegate;
@end

Powered by Google App Engine
This is Rietveld 408576698