| Index: content/renderer/background_sync/background_sync_client_impl.cc
|
| diff --git a/content/renderer/background_sync/background_sync_client_impl.cc b/content/renderer/background_sync/background_sync_client_impl.cc
|
| index bfa961e82c14c0e66e0752f5e4b95fee756ff4b8..30a0cefbebbfab49c0b922869577ae6cc79366c2 100644
|
| --- a/content/renderer/background_sync/background_sync_client_impl.cc
|
| +++ b/content/renderer/background_sync/background_sync_client_impl.cc
|
| @@ -8,6 +8,7 @@
|
|
|
| #include "content/child/background_sync/background_sync_provider.h"
|
| #include "content/child/background_sync/background_sync_type_converters.h"
|
| +#include "content/common/service_worker/service_worker_status_code.h"
|
| #include "content/renderer/service_worker/service_worker_context_client.h"
|
| #include "third_party/WebKit/public/platform/Platform.h"
|
| #include "third_party/WebKit/public/platform/WebThread.h"
|
| @@ -38,7 +39,7 @@ void BackgroundSyncClientImpl::Sync(
|
| ServiceWorkerContextClient* client =
|
| ServiceWorkerContextClient::ThreadSpecificInstance();
|
| if (!client) {
|
| - callback.Run(blink::mojom::ServiceWorkerEventStatus::ABORTED);
|
| + callback.Run(SERVICE_WORKER_ERROR_ABORT);
|
| return;
|
| }
|
|
|
|
|