| Index: content/browser/devtools/protocol/service_worker_handler.cc
|
| diff --git a/content/browser/devtools/protocol/service_worker_handler.cc b/content/browser/devtools/protocol/service_worker_handler.cc
|
| index e008b685875e55800eb00e814119f6635e1d6cd0..a587741af0e3c7e4d1b0928054cd52d4c25597d2 100644
|
| --- a/content/browser/devtools/protocol/service_worker_handler.cc
|
| +++ b/content/browser/devtools/protocol/service_worker_handler.cc
|
| @@ -64,13 +64,13 @@ void PushDeliveryNoOp(PushDeliveryStatus status) {
|
| const std::string GetVersionRunningStatusString(
|
| content::ServiceWorkerVersion::RunningStatus running_status) {
|
| switch (running_status) {
|
| - case content::ServiceWorkerVersion::STOPPED:
|
| + case content::ServiceWorkerVersion::RunningStatus::STOPPED:
|
| return kServiceWorkerVersionRunningStatusStopped;
|
| - case content::ServiceWorkerVersion::STARTING:
|
| + case content::ServiceWorkerVersion::RunningStatus::STARTING:
|
| return kServiceWorkerVersionRunningStatusStarting;
|
| - case content::ServiceWorkerVersion::RUNNING:
|
| + case content::ServiceWorkerVersion::RunningStatus::RUNNING:
|
| return kServiceWorkerVersionRunningStatusRunning;
|
| - case content::ServiceWorkerVersion::STOPPING:
|
| + case content::ServiceWorkerVersion::RunningStatus::STOPPING:
|
| return kServiceWorkerVersionRunningStatusStopping;
|
| }
|
| return std::string();
|
|
|