| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/service_worker/service_worker_status_code.h" | 5 #include "content/common/service_worker/service_worker_status_code.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| 11 const char* ServiceWorkerStatusToString(ServiceWorkerStatusCode status) { | 11 const char* ServiceWorkerStatusToString(ServiceWorkerStatusCode status) { |
| 12 switch (status) { | 12 switch (status) { |
| 13 case SERVICE_WORKER_OK: | 13 case SERVICE_WORKER_OK: |
| 14 return "Operation has succeeded"; | 14 return "Operation has succeeded"; |
| 15 case SERVICE_WORKER_ERROR_FAILED: | 15 case SERVICE_WORKER_ERROR_FAILED: |
| 16 return "Operation has failed (unknown reason)"; | 16 return "Operation has failed (unknown reason)"; |
| 17 case SERVICE_WORKER_ERROR_ABORT: | 17 case SERVICE_WORKER_ERROR_ABORT: |
| 18 return "Operation has been aborted"; | 18 return "Operation has been aborted"; |
| 19 case SERVICE_WORKER_ERROR_PROCESS_NOT_FOUND: | 19 case SERVICE_WORKER_ERROR_PROCESS_NOT_FOUND: |
| 20 return "Could not find a renderer process to run a service worker"; | 20 return "Could not find a renderer process to run a service worker"; |
| 21 case SERVICE_WORKER_ERROR_START_WORKER_FAILED: | 21 case SERVICE_WORKER_ERROR_START_WORKER_FAILED: |
| 22 return "ServiceWorker cannot be started"; | 22 return "ServiceWorker cannot be started"; |
| 23 case SERVICE_WORKER_ERROR_INSTALL_WORKER_FAILED: | 23 case SERVICE_WORKER_ERROR_INSTALL_WORKER_FAILED: |
| 24 return "ServiceWorker failed to install"; | 24 return "ServiceWorker failed to install"; |
| 25 case SERVICE_WORKER_ERROR_ACTIVATE_WORKER_FAILED: | 25 case SERVICE_WORKER_ERROR_ACTIVATE_WORKER_FAILED: |
| 26 return "ServiceWorker failed to activate"; | 26 return "ServiceWorker failed to activate"; |
| 27 case SERVICE_WORKER_ERROR_IPC_FAILED: |
| 28 return "IPC connection was closed or IPC error has occured"; |
| 27 } | 29 } |
| 28 NOTREACHED(); | 30 NOTREACHED(); |
| 29 return ""; | 31 return ""; |
| 30 } | 32 } |
| 31 | 33 |
| 32 } // namespace content | 34 } // namespace content |
| OLD | NEW |