| Index: content/browser/background_sync/background_sync_manager_unittest.cc
|
| diff --git a/content/browser/background_sync/background_sync_manager_unittest.cc b/content/browser/background_sync/background_sync_manager_unittest.cc
|
| index f0378ecfd3766be1506954a2f7b44f74cf39f22f..6728ae4db029f5ab130a4cda996b6602ba424695 100644
|
| --- a/content/browser/background_sync/background_sync_manager_unittest.cc
|
| +++ b/content/browser/background_sync/background_sync_manager_unittest.cc
|
| @@ -183,10 +183,12 @@ class TestBackgroundSyncManager : public BackgroundSyncManager {
|
| }
|
|
|
| void FireOneShotSync(
|
| + const BackgroundSyncRegistration& registration,
|
| const scoped_refptr<ServiceWorkerVersion>& active_version,
|
| const ServiceWorkerVersion::StatusCallback& callback) override {
|
| if (one_shot_callback_.is_null()) {
|
| - BackgroundSyncManager::FireOneShotSync(active_version, callback);
|
| + BackgroundSyncManager::FireOneShotSync(registration, active_version,
|
| + callback);
|
| } else {
|
| one_shot_callback_.Run(active_version, callback);
|
| }
|
|
|