| Index: ios/chrome/browser/passwords/update_password_infobar_controller.mm
|
| diff --git a/ios/chrome/browser/passwords/update_password_infobar_controller.mm b/ios/chrome/browser/passwords/update_password_infobar_controller.mm
|
| index 656b3bb2f88bf4630890b2e793e8359657edceeb..22d6a4457a41ae2e416aafa78e9deefaf3bc9fb8 100644
|
| --- a/ios/chrome/browser/passwords/update_password_infobar_controller.mm
|
| +++ b/ios/chrome/browser/passwords/update_password_infobar_controller.mm
|
| @@ -4,7 +4,7 @@
|
|
|
| #import "ios/chrome/browser/passwords/update_password_infobar_controller.h"
|
|
|
| -#import "base/mac/objc_property_releaser.h"
|
| +#include "base/mac/objc_release_properties.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/sys_string_conversions.h"
|
| #include "ios/chrome/browser/infobars/confirm_infobar_controller+protected.h"
|
| @@ -19,8 +19,6 @@ NSUInteger kAccountTag = 10;
|
| }
|
|
|
| @interface UpdatePasswordInfoBarController ()<SelectorCoordinatorDelegate> {
|
| - base::mac::ObjCPropertyReleaser
|
| - _propertyReleaser_UpdatePasswordInfoBarController;
|
| IOSChromeUpdatePasswordInfoBarDelegate* _delegate;
|
| }
|
| @property(nonatomic, retain) SelectorCoordinator* selectorCoordinator;
|
| @@ -30,13 +28,9 @@ NSUInteger kAccountTag = 10;
|
|
|
| @synthesize selectorCoordinator = _selectorCoordinator;
|
|
|
| -- (instancetype)initWithDelegate:(InfoBarViewDelegate*)delegate {
|
| - self = [super initWithDelegate:delegate];
|
| - if (self) {
|
| - _propertyReleaser_UpdatePasswordInfoBarController.Init(
|
| - self, [UpdatePasswordInfoBarController class]);
|
| - }
|
| - return self;
|
| +- (void)dealloc {
|
| + base::mac::ReleaseProperties(self);
|
| + [super dealloc];
|
| }
|
|
|
| - (InfoBarView*)viewForDelegate:
|
|
|