| Index: ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.mm
|
| diff --git a/ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.mm b/ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.mm
|
| index 3aaa4ad404c7641b5a477529877aa8f341340bfa..0e9d252c10026f8f66d6ba47de28fe1e83ce1fcb 100644
|
| --- a/ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.mm
|
| +++ b/ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.mm
|
| @@ -3,12 +3,10 @@
|
| // found in the LICENSE file.
|
| #import "ios/chrome/browser/ui/bookmarks/bars/bookmark_top_bar.h"
|
|
|
| -#include "base/mac/objc_property_releaser.h"
|
| +#include "base/mac/objc_release_properties.h"
|
| #include "base/mac/scoped_nsobject.h"
|
|
|
| -@interface BookmarkTopBar () {
|
| - base::mac::ObjCPropertyReleaser _propertyReleaser_BookmarkBar;
|
| -}
|
| +@interface BookmarkTopBar ()
|
| @property(nonatomic, retain) UIView* contentView;
|
| @end
|
|
|
| @@ -23,8 +21,6 @@
|
| - (instancetype)initWithFrame:(CGRect)frame {
|
| self = [super initWithFrame:frame];
|
| if (self) {
|
| - _propertyReleaser_BookmarkBar.Init(self, [BookmarkTopBar class]);
|
| -
|
| self.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin |
|
| UIViewAutoresizingFlexibleWidth;
|
|
|
| @@ -38,6 +34,11 @@
|
| return self;
|
| }
|
|
|
| +- (void)dealloc {
|
| + base::mac::ReleaseProperties(self);
|
| + [super dealloc];
|
| +}
|
| +
|
| - (void)layoutSubviews {
|
| [super layoutSubviews];
|
|
|
|
|