| Index: ui/message_center/message_center.cc
|
| diff --git a/ui/message_center/message_center.cc b/ui/message_center/message_center.cc
|
| index c449a056d69ba06c23fab9908b2dd230217b713c..02ea67e5dc8a687b3c81bc02d1dabe50146b176e 100644
|
| --- a/ui/message_center/message_center.cc
|
| +++ b/ui/message_center/message_center.cc
|
| @@ -144,6 +144,11 @@ void MessageCenter::ShowNotificationSettings(const std::string& id) {
|
| delegate_->ShowSettings(id);
|
| }
|
|
|
| +void MessageCenter::ShowNotificationSettingsDialog(gfx::NativeView context) {
|
| + if (delegate_)
|
| + delegate_->ShowSettingsDialog(context);
|
| +}
|
| +
|
| void MessageCenter::OnNotificationClicked(const std::string& id) {
|
| if (delegate_)
|
| delegate_->OnClicked(id);
|
|
|