Chromium Code Reviews| 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 |
|
sdefresne
2017/05/02 14:19:28
nit: change this to the following
// TODO(crbug.c
gambard
2017/05/02 15:19:02
Done.
|
| // 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. |