| 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 24630e35c24592f23132d447cd59aa910402379d..4b1c928c0ee2b6fb23bfd59416a848213e75c43b 100644
|
| --- a/content/renderer/background_sync/background_sync_client_impl.cc
|
| +++ b/content/renderer/background_sync/background_sync_client_impl.cc
|
| @@ -19,20 +19,15 @@ namespace content {
|
|
|
| // static
|
| void BackgroundSyncClientImpl::Create(
|
| - int64_t service_worker_registration_id,
|
| mojo::InterfaceRequest<BackgroundSyncServiceClient> request) {
|
| - new BackgroundSyncClientImpl(service_worker_registration_id,
|
| - std::move(request));
|
| + new BackgroundSyncClientImpl(std::move(request));
|
| }
|
|
|
| BackgroundSyncClientImpl::~BackgroundSyncClientImpl() {}
|
|
|
| BackgroundSyncClientImpl::BackgroundSyncClientImpl(
|
| - int64_t service_worker_registration_id,
|
| mojo::InterfaceRequest<BackgroundSyncServiceClient> request)
|
| - : service_worker_registration_id_(service_worker_registration_id),
|
| - binding_(this, std::move(request)),
|
| - callback_seq_num_(0) {}
|
| + : binding_(this, std::move(request)), callback_seq_num_(0) {}
|
|
|
| void BackgroundSyncClientImpl::Sync(
|
| int64_t handle_id,
|
|
|