| 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 29d288f3d0b19b8c250a9a289fec989e7a173656..d9e5f78cf5a86b22d1ff36bac1b59b0293dd5f77 100644
|
| --- a/content/renderer/background_sync/background_sync_client_impl.cc
|
| +++ b/content/renderer/background_sync/background_sync_client_impl.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "content/renderer/background_sync/background_sync_client_impl.h"
|
|
|
| -#include "content/child/background_sync/background_sync_provider_thread_proxy.h"
|
| +#include "content/child/background_sync/background_sync_provider.h"
|
| #include "content/child/background_sync/background_sync_type_converters.h"
|
| #include "content/renderer/service_worker/service_worker_context_client.h"
|
| #include "third_party/WebKit/public/platform/Platform.h"
|
| @@ -38,9 +38,8 @@ void BackgroundSyncClientImpl::Sync(int handle_id,
|
| // it.
|
| // TODO(jkarlin): Change the WebSyncPlatform to support
|
| // DuplicateRegistrationHandle and then this cast can go.
|
| - BackgroundSyncProviderThreadProxy* provider =
|
| - static_cast<BackgroundSyncProviderThreadProxy*>(
|
| - blink::Platform::current()->backgroundSyncProvider());
|
| + BackgroundSyncProvider* provider = static_cast<BackgroundSyncProvider*>(
|
| + blink::Platform::current()->backgroundSyncProvider());
|
| DCHECK(provider);
|
|
|
| // TODO(jkarlin): Find a way to claim the handle safely without requiring a
|
|
|