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..28cd7ef4f8c1e7da9420bb08a87b36c07d8cfd97 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( |
+ 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); |
} |