Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / content / common / service_worker / service_worker_status_code.cc
index bdf28a9..a402a8a 100644 (file)
@@ -30,6 +30,10 @@ const char* ServiceWorkerStatusToString(ServiceWorkerStatusCode status) {
       return "ServiceWorker failed to activate";
     case SERVICE_WORKER_ERROR_IPC_FAILED:
       return "IPC connection was closed or IPC error has occured";
+    case SERVICE_WORKER_ERROR_NETWORK:
+      return "Operation failed by network issue";
+    case SERVICE_WORKER_ERROR_SECURITY:
+      return "Operation failed by security issue";
   }
   NOTREACHED();
   return "";