[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / content / common / service_worker / service_worker_status_code.cc
blobbdf28a94f67df59731ae2d556962b7db344636cf
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
3 // found in the LICENSE file.
5 #include "content/common/service_worker/service_worker_status_code.h"
7 #include "base/logging.h"
9 namespace content {
11 const char* ServiceWorkerStatusToString(ServiceWorkerStatusCode status) {
12 switch (status) {
13 case SERVICE_WORKER_OK:
14 return "Operation has succeeded";
15 case SERVICE_WORKER_ERROR_FAILED:
16 return "Operation has failed (unknown reason)";
17 case SERVICE_WORKER_ERROR_ABORT:
18 return "Operation has been aborted";
19 case SERVICE_WORKER_ERROR_PROCESS_NOT_FOUND:
20 return "Could not find a renderer process to run a service worker";
21 case SERVICE_WORKER_ERROR_NOT_FOUND:
22 return "Not found";
23 case SERVICE_WORKER_ERROR_EXISTS:
24 return "Already exists";
25 case SERVICE_WORKER_ERROR_START_WORKER_FAILED:
26 return "ServiceWorker cannot be started";
27 case SERVICE_WORKER_ERROR_INSTALL_WORKER_FAILED:
28 return "ServiceWorker failed to install";
29 case SERVICE_WORKER_ERROR_ACTIVATE_WORKER_FAILED:
30 return "ServiceWorker failed to activate";
31 case SERVICE_WORKER_ERROR_IPC_FAILED:
32 return "IPC connection was closed or IPC error has occured";
34 NOTREACHED();
35 return "";
38 } // namespace content