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

Unified Diff: ios/chrome/browser/ui/bookmarks/bookmark_panel_view.h

Issue 2746473003: [ObjC ARC] Converts ios/chrome/browser/ui/bookmarks:bookmarks to ARC. (Closed)
Patch Set: fix test Created 3 years, 9 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/bookmarks/bookmark_panel_view.h
diff --git a/ios/chrome/browser/ui/bookmarks/bookmark_panel_view.h b/ios/chrome/browser/ui/bookmarks/bookmark_panel_view.h
index b48fa1625409a8c269c0841a52ab9deec0aa72cf..792ac9fa302b24b9093bb2f303245c1e4b547466 100644
--- a/ios/chrome/browser/ui/bookmarks/bookmark_panel_view.h
+++ b/ios/chrome/browser/ui/bookmarks/bookmark_panel_view.h
@@ -42,12 +42,12 @@
// programmatic animation.
- (BOOL)userDrivenAnimationInProgress;
-@property(nonatomic, assign) id<BookmarkPanelViewDelegate> delegate;
+@property(nonatomic, weak) id<BookmarkPanelViewDelegate> delegate;
// These views should not be modified directly. Instead, subviews should be
// added to each to create the desired UI.
-@property(nonatomic, retain, readonly) UIView* contentView;
-@property(nonatomic, retain, readonly) UIView* menuView;
+@property(nonatomic, strong, readonly) UIView* contentView;
+@property(nonatomic, strong, readonly) UIView* menuView;
// Whether the menu is being shown. If a user-driven animation is in progress,
// this property reflects the state of the menu at the beginning of the

Powered by Google App Engine
This is Rietveld 408576698