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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp

Issue 1632113004: ServiceWorker: Add initial implementation of ExtendableMessageEvent behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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/modules/serviceworkers/WaitUntilObserver.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
index 1535e6683c411fcf8eb5dc6b043ba45148b90a8a..3fc7b3d348e656f25474ee1935ecaeab9c3cc88e 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
@@ -169,6 +169,9 @@ void WaitUntilObserver::decrementPendingActivity()
case Install:
client->didHandleInstallEvent(m_eventID, result);
break;
+ case Message:
+ client->didHandleExtendableMessageEvent(m_eventID, result);
+ break;
case NotificationClick:
client->didHandleNotificationClickEvent(m_eventID, result);
m_consumeWindowInteractionTimer.stop();

Powered by Google App Engine
This is Rietveld 408576698