| Index: ui/message_center/notification.cc
|
| diff --git a/ui/message_center/notification.cc b/ui/message_center/notification.cc
|
| index eed61df1763ac3ad02139abe877161366210f468..842307ae999728c7ae09f5c9316137106f2bc46e 100644
|
| --- a/ui/message_center/notification.cc
|
| +++ b/ui/message_center/notification.cc
|
| @@ -26,6 +26,12 @@ ButtonInfo::ButtonInfo(const base::string16& title)
|
| : title(title) {
|
| }
|
|
|
| +ButtonInfo::ButtonInfo(const ButtonInfo& other) = default;
|
| +
|
| +ButtonInfo::~ButtonInfo() = default;
|
| +
|
| +ButtonInfo& ButtonInfo::operator=(const ButtonInfo& other) = default;
|
| +
|
| RichNotificationData::RichNotificationData()
|
| : priority(DEFAULT_PRIORITY),
|
| never_timeout(false),
|
|
|