summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-88-service-worker-registration-crash.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files/chromium-88-service-worker-registration-crash.patch')
-rw-r--r--www-client/chromium/files/chromium-88-service-worker-registration-crash.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/www-client/chromium/files/chromium-88-service-worker-registration-crash.patch b/www-client/chromium/files/chromium-88-service-worker-registration-crash.patch
deleted file mode 100644
index e543fca..0000000
--- a/www-client/chromium/files/chromium-88-service-worker-registration-crash.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/content/browser/service_worker/service_worker_container_host.cc b/content/browser/service_worker/service_worker_container_host.cc
-index 5cb7b2da2..fa11602ed 100644
---- a/content/browser/service_worker/service_worker_container_host.cc
-+++ b/content/browser/service_worker/service_worker_container_host.cc
-@@ -626,6 +626,9 @@ void ServiceWorkerContainerHost::RemoveServiceWorkerRegistrationObjectHost(
- int64_t registration_id) {
- DCHECK_CURRENTLY_ON(ServiceWorkerContext::GetCoreThreadId());
- DCHECK(base::Contains(registration_object_hosts_, registration_id));
-+ std::unique_ptr<ServiceWorkerRegistrationObjectHost> to_be_deleted =
-+ std::move(registration_object_hosts_[registration_id]);
-+ DCHECK(to_be_deleted);
- registration_object_hosts_.erase(registration_id);
- }
-