Index: chrome/browser/notifications/platform_notification_service_unittest.cc |
diff --git a/chrome/browser/notifications/platform_notification_service_unittest.cc b/chrome/browser/notifications/platform_notification_service_unittest.cc |
index 7c4542a4a2e12ecc2657c5b0ab04b8e45e4ccd84..e34ba69856498bffb10cc6ece29ab9a897e6dbfe 100644 |
--- a/chrome/browser/notifications/platform_notification_service_unittest.cc |
+++ b/chrome/browser/notifications/platform_notification_service_unittest.cc |
@@ -54,7 +54,7 @@ class MockDesktopNotificationDelegate |
// content::DesktopNotificationDelegate implementation. |
void NotificationDisplayed() override { displayed_ = true; } |
void NotificationClosed() override {} |
- void NotificationClick() override { clicked_ = true; } |
+ void NotificationClick(int action_index) override { clicked_ = true; } |
bool displayed() const { return displayed_; } |
bool clicked() const { return clicked_; } |