39baf68790
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> Co-authored-by: loc <andy@slack-corp.com> Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Jeremy Apthorp <nornagon@nornagon.net>
21 lines
913 B
Diff
21 lines
913 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
Date: Thu, 20 Sep 2018 17:48:16 -0700
|
|
Subject: no_cache_storage_check.patch
|
|
|
|
Do not check for unique origin in CacheStorage, in Electron we may have
|
|
scripts running without an origin.
|
|
|
|
diff --git a/content/browser/cache_storage/legacy/legacy_cache_storage.cc b/content/browser/cache_storage/legacy/legacy_cache_storage.cc
|
|
index 0abdf04f5fa016d7ee8241eab60375944fe8fe62..95f62ba41bd28c08364c5f13927bc90c4567f88b 100644
|
|
--- a/content/browser/cache_storage/legacy/legacy_cache_storage.cc
|
|
+++ b/content/browser/cache_storage/legacy/legacy_cache_storage.cc
|
|
@@ -107,7 +107,7 @@ class LegacyCacheStorage::CacheLoader {
|
|
cache_storage_(cache_storage),
|
|
origin_(origin),
|
|
owner_(owner) {
|
|
- DCHECK(!origin_.opaque());
|
|
+ // DCHECK(!origin_.opaque());
|
|
}
|
|
|
|
virtual ~CacheLoader() {}
|