| Index: chrome/browser/notifications/persistent_notification_handler.cc
|
| diff --git a/chrome/browser/notifications/persistent_notification_handler.cc b/chrome/browser/notifications/persistent_notification_handler.cc
|
| index 810b0f1ea8ec00e0beaf36d6bc1983a1c20b78d1..16b62654d2d925ffe2a566326c7d074ec0a9cbea 100644
|
| --- a/chrome/browser/notifications/persistent_notification_handler.cc
|
| +++ b/chrome/browser/notifications/persistent_notification_handler.cc
|
| @@ -25,15 +25,17 @@ void PersistentNotificationHandler::OnClose(Profile* profile,
|
| profile, notification_id, notification_origin, by_user);
|
| }
|
|
|
| -void PersistentNotificationHandler::OnClick(Profile* profile,
|
| - const std::string& origin,
|
| - const std::string& notification_id,
|
| - int action_index) {
|
| +void PersistentNotificationHandler::OnClick(
|
| + Profile* profile,
|
| + const std::string& origin,
|
| + const std::string& notification_id,
|
| + int action_index,
|
| + const base::NullableString16& reply) {
|
| const GURL notification_origin(origin);
|
| DCHECK(notification_origin.is_valid());
|
|
|
| PlatformNotificationServiceImpl::GetInstance()->OnPersistentNotificationClick(
|
| - profile, notification_id, notification_origin, action_index);
|
| + profile, notification_id, notification_origin, action_index, reply);
|
| }
|
|
|
| void PersistentNotificationHandler::OpenSettings(Profile* profile) {
|
|
|