Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(779)

Unified Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h

Issue 2300093002: Make //content responsible for generating notification Ids (Closed)
Patch Set: comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
index 1a979dc9390a75e0d1de75027d410a2292c02b6d..5b313ec0d73e13a5016c4281dafc8a09cd0617bf 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.h
@@ -77,8 +77,8 @@ public:
void dispatchFetchEvent(int responseID, int eventFinishID, const WebServiceWorkerRequest&) override;
void dispatchForeignFetchEvent(int responseID, int eventFinishID, const WebServiceWorkerRequest&) override;
void dispatchInstallEvent(int) override;
- void dispatchNotificationClickEvent(int, int64_t notificationID, const WebNotificationData&, int actionIndex) override;
- void dispatchNotificationCloseEvent(int, int64_t notificationID, const WebNotificationData&) override;
+ void dispatchNotificationClickEvent(int, const WebString& notificationID, const WebNotificationData&, int actionIndex) override;
+ void dispatchNotificationCloseEvent(int, const WebString& notificationID, const WebNotificationData&) override;
void dispatchPushEvent(int, const WebString& data) override;
void dispatchSyncEvent(int, const WebString& tag, LastChanceOption) override;
bool hasFetchEventHandler() override;

Powered by Google App Engine
This is Rietveld 408576698