005101424a
Co-authored-by: Charles Kerr <charles@charleskerr.com>
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 4c96defefe188f113015b70510a8205deddb7cdb..c309134839b138f649392775b69f3a71d1eec73a 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() {}
|