| Index: chrome/browser/notifications/notification_builder_mac.mm
|
| diff --git a/chrome/browser/notifications/notification_builder_mac.mm b/chrome/browser/notifications/notification_builder_mac.mm
|
| index 321f9c319fbd09376bf59007b40597b5a1b8f5f9..7a92e2503357a9d99c4d0cce4bef72d106e0c5f0 100644
|
| --- a/chrome/browser/notifications/notification_builder_mac.mm
|
| +++ b/chrome/browser/notifications/notification_builder_mac.mm
|
| @@ -42,14 +42,14 @@ @implementation NotificationBuilder {
|
|
|
| - (instancetype)init {
|
| if ((self = [super init])) {
|
| - notificationData_ = [[NSMutableDictionary alloc] init];
|
| + notificationData_.reset([[NSMutableDictionary alloc] init]);
|
| }
|
| return self;
|
| }
|
|
|
| - (instancetype)initWithDictionary:(NSDictionary*)data {
|
| if ((self = [super init])) {
|
| - notificationData_ = [data copy];
|
| + notificationData_.reset([data copy]);
|
| }
|
| return self;
|
| }
|
|
|