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

Unified Diff: ios/chrome/browser/ui/toolbar/toolbar_controller.h

Issue 2808873002: [ObjC ARC] Converts ios/chrome/browser/ui/toolbar:toolbar to ARC. (Closed)
Patch Set: feedback 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/toolbar/toolbar_controller.h
diff --git a/ios/chrome/browser/ui/toolbar/toolbar_controller.h b/ios/chrome/browser/ui/toolbar/toolbar_controller.h
index 1bb6ef27f4da5aa2db475deff03eec5e6f5464a7..f843b340ffa35645cf899f255a88b9127c2ebde8 100644
--- a/ios/chrome/browser/ui/toolbar/toolbar_controller.h
+++ b/ios/chrome/browser/ui/toolbar/toolbar_controller.h
@@ -114,18 +114,18 @@ extern const CGRect kToolbarFrame[INTERFACE_IDIOM_COUNT];
// from also being visible.
// TODO(blundell): Figure out how to fix this and have the top-level view be a
// UIView. b/6167700
-@property(nonatomic, readonly, retain) ToolbarView* view;
+@property(nonatomic, readonly, strong) ToolbarView* view;
// The view for the toolbar background image. This is a subview of |view| to
// allow clients to alter the transparency of the background image without
// affecting the other components of the toolbar.
-@property(nonatomic, readonly, retain) UIImageView* backgroundView;
+@property(nonatomic, readonly, strong) UIImageView* backgroundView;
// The view for the toolbar shadow image. This is a subview of |view| to allow
// clients to alter the visibility of the shadow without affecting other
// components of the toolbar.
-@property(nonatomic, readonly, retain) UIImageView* shadowView;
+@property(nonatomic, readonly, strong) UIImageView* shadowView;
// The tools popup controller. Nil if the tools popup menu is not visible.
-@property(nonatomic, readonly, retain)
+@property(nonatomic, readonly, strong)
ToolsPopupController* toolsPopupController;
// Style of this toolbar.

Powered by Google App Engine
This is Rietveld 408576698