| Index: content/renderer/background_sync/background_sync_client_impl.h
|
| diff --git a/content/renderer/background_sync/background_sync_client_impl.h b/content/renderer/background_sync/background_sync_client_impl.h
|
| index a264ffc95144835077fcea7a5e96c9e775218a59..be6e19032dd1ba8f1e522925192d9d65a3cc333e 100644
|
| --- a/content/renderer/background_sync/background_sync_client_impl.h
|
| +++ b/content/renderer/background_sync/background_sync_client_impl.h
|
| @@ -12,7 +12,6 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "content/common/content_export.h"
|
| -#include "mojo/public/cpp/bindings/strong_binding.h"
|
| #include "third_party/WebKit/public/platform/modules/background_sync/background_sync.mojom.h"
|
|
|
| namespace content {
|
| @@ -20,23 +19,18 @@ namespace content {
|
| class CONTENT_EXPORT BackgroundSyncClientImpl
|
| : public NON_EXPORTED_BASE(blink::mojom::BackgroundSyncServiceClient) {
|
| public:
|
| - static void Create(mojo::InterfaceRequest<
|
| - blink::mojom::BackgroundSyncServiceClient> request);
|
| + static void Create(blink::mojom::BackgroundSyncServiceClientRequest request);
|
|
|
| ~BackgroundSyncClientImpl() override;
|
|
|
| private:
|
| - explicit BackgroundSyncClientImpl(
|
| - mojo::InterfaceRequest<blink::mojom::BackgroundSyncServiceClient>
|
| - request);
|
| + BackgroundSyncClientImpl();
|
|
|
| // BackgroundSyncServiceClient methods:
|
| void Sync(const mojo::String& tag,
|
| blink::mojom::BackgroundSyncEventLastChance last_chance,
|
| const SyncCallback& callback) override;
|
|
|
| - mojo::StrongBinding<blink::mojom::BackgroundSyncServiceClient> binding_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(BackgroundSyncClientImpl);
|
| };
|
|
|
|
|