Index: chrome/browser/extensions/api/notifications/notifications_api.h |
diff --git a/chrome/browser/extensions/api/notifications/notifications_api.h b/chrome/browser/extensions/api/notifications/notifications_api.h |
index 6949905e2266f46958561b6a3e19194049998df4..a465604d6811e87a61c124b188e8baf338605224 100644 |
--- a/chrome/browser/extensions/api/notifications/notifications_api.h |
+++ b/chrome/browser/extensions/api/notifications/notifications_api.h |
@@ -13,6 +13,8 @@ |
#include "chrome/common/extensions/api/notifications.h" |
#include "ui/message_center/notification_types.h" |
+class Notification; |
+ |
namespace extensions { |
class NotificationsApiFunction : public ApiFunction { |
@@ -27,6 +29,9 @@ class NotificationsApiFunction : public ApiFunction { |
bool CreateNotification(const std::string& id, |
api::notifications::NotificationOptions* options); |
+ bool UpdateNotification(const std::string& id, |
+ api::notifications::NotificationOptions* options, |
+ Notification* notification); |
bool IsNotificationsApiEnabled(); |