Index: content/browser/background_sync/background_sync_manager.cc |
diff --git a/content/browser/background_sync/background_sync_manager.cc b/content/browser/background_sync/background_sync_manager.cc |
index f9d819a709c407e8509b7ea8b200b9cb4beb5ee2..1f8d22f09be375aef11623cc6479f5beef94b638 100644 |
--- a/content/browser/background_sync/background_sync_manager.cc |
+++ b/content/browser/background_sync/background_sync_manager.cc |
@@ -151,11 +151,11 @@ void OnSyncEventFinished(scoped_refptr<ServiceWorkerVersion> active_version, |
int request_id, |
const ServiceWorkerVersion::StatusCallback& callback, |
blink::mojom::ServiceWorkerEventStatus status, |
- double dispatch_event_time) { |
+ base::Time dispatch_event_time) { |
if (!active_version->FinishRequest( |
request_id, |
status == blink::mojom::ServiceWorkerEventStatus::COMPLETED, |
- base::Time::FromDoubleT(dispatch_event_time))) { |
+ dispatch_event_time)) { |
return; |
} |
callback.Run(mojo::ConvertTo<ServiceWorkerStatusCode>(status)); |