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

Unified Diff: ios/chrome/browser/ui/popup_menu/popup_menu_controller.h

Issue 2935743002: [ObjC ARC] Converts ios/chrome/browser/ui/popup_menu:popup_menu to ARC. (Closed)
Patch Set: 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/popup_menu/popup_menu_controller.h
diff --git a/ios/chrome/browser/ui/popup_menu/popup_menu_controller.h b/ios/chrome/browser/ui/popup_menu/popup_menu_controller.h
index 917912b072436b9c04edc2f44af475da1bd411fc..a3fdafb5f0e2581497481d31795174cf8697e25d 100644
--- a/ios/chrome/browser/ui/popup_menu/popup_menu_controller.h
+++ b/ios/chrome/browser/ui/popup_menu/popup_menu_controller.h
@@ -23,15 +23,15 @@
// View that contains all subviews. Subclasses should add their views to
// |containerView_|.
-@property(nonatomic, readonly, retain) UIView* containerView;
+@property(nonatomic, readonly, strong) UIView* containerView;
// Displays the background and border of the popup.
-@property(nonatomic, readonly, retain) PopupMenuView* popupContainer;
+@property(nonatomic, readonly, strong) PopupMenuView* popupContainer;
// Button used to dismiss the popup. Covers the entire window behind the popup
// menu. Catches any touch events outside of the popup and invokes
// |-tappedBehindPopup:| if there are any.
-@property(nonatomic, readonly, retain) UIButton* backgroundButton;
+@property(nonatomic, readonly, strong) UIButton* backgroundButton;
// Delegate for the popup menu.
-@property(nonatomic, assign) id<PopupMenuDelegate> delegate;
+@property(nonatomic, weak) id<PopupMenuDelegate> delegate;
// Initializes the PopupMenuController and adds its views inside of parent.
- (id)initWithParentView:(UIView*)parent;
« no previous file with comments | « ios/chrome/browser/ui/popup_menu/BUILD.gn ('k') | ios/chrome/browser/ui/popup_menu/popup_menu_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698