| 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 78d1a1a463247b9ddf193ef2817fa8628591353d..3b209b343e01f2fdfdcf5063120c87071977f7dc 100644
|
| --- a/content/renderer/background_sync/background_sync_client_impl.h
|
| +++ b/content/renderer/background_sync/background_sync_client_impl.h
|
| @@ -21,15 +21,13 @@ class CONTENT_EXPORT BackgroundSyncClientImpl
|
| : public NON_EXPORTED_BASE(BackgroundSyncServiceClient) {
|
| public:
|
| static void Create(
|
| - int64_t service_worker_registration_id,
|
| mojo::InterfaceRequest<BackgroundSyncServiceClient> request);
|
|
|
| ~BackgroundSyncClientImpl() override;
|
|
|
| private:
|
| using SyncCallback = mojo::Callback<void(ServiceWorkerEventStatus)>;
|
| - BackgroundSyncClientImpl(
|
| - int64_t service_worker_registration_id,
|
| + explicit BackgroundSyncClientImpl(
|
| mojo::InterfaceRequest<BackgroundSyncServiceClient> request);
|
|
|
| // BackgroundSyncServiceClient methods:
|
| @@ -42,7 +40,6 @@ class CONTENT_EXPORT BackgroundSyncClientImpl
|
| BackgroundSyncError error,
|
| SyncRegistrationPtr registration);
|
|
|
| - int64_t service_worker_registration_id_;
|
| mojo::StrongBinding<BackgroundSyncServiceClient> binding_;
|
|
|
| int64_t callback_seq_num_;
|
|
|