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

Unified Diff: content/public/common/push_messaging_status.cc

Issue 340773006: Dispatch push event to worker from PushServiceImpl#OnMessage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup. Created 6 years, 4 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
« no previous file with comments | « content/public/common/push_messaging_status.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/push_messaging_status.cc
diff --git a/content/public/common/push_messaging_status.cc b/content/public/common/push_messaging_status.cc
index 0040072bc0806e7ff883b298b2ca2a6ca8f894f3..f01cf80ca1fe4ef2f49ea17b6f45f25a5615c02a 100644
--- a/content/public/common/push_messaging_status.cc
+++ b/content/public/common/push_messaging_status.cc
@@ -28,6 +28,12 @@ const char* PushMessagingStatusToString(PushMessagingStatus status) {
case PUSH_MESSAGING_STATUS_REGISTRATION_FAILED_SERVICE_ERROR:
return "Registration failed - push service error";
+ case PUSH_MESSAGING_STATUS_MESSAGE_DELIVERY_FAILED_NO_SERVICE_WORKER:
+ return "Message delivery failed - no Service Worker";
+
+ case PUSH_MESSAGING_STATUS_MESSAGE_DELIVERY_FAILED_SERVICE_WORKER_ERROR:
+ return "Message delivery failed - Service Worker error";
+
case PUSH_MESSAGING_STATUS_ERROR:
return "Operation has failed (unspecified reason)";
}
« no previous file with comments | « content/public/common/push_messaging_status.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698