Index: ui/message_center/message_center.cc |
diff --git a/ui/message_center/message_center.cc b/ui/message_center/message_center.cc |
index f8a7b0c493b3188a276cfce8fb9c127d332a8a66..f790b3599c146a3581d753d5e65535b2163bca80 100644 |
--- a/ui/message_center/message_center.cc |
+++ b/ui/message_center/message_center.cc |
@@ -143,6 +143,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); |