f3e0517b6e
* chore: bump chromium in DEPS to 102.0.4999.0 * 3576640: Set OOM handler during V8 initialization https://chromium-review.googlesource.com/c/chromium/src/+/3576640 * 3574964: Remove deprecated base::Value usage in print_settings_conversion code. https://chromium-review.googlesource.com/c/chromium/src/+/3574964 * 3570062: Replicate Active state to render process for all RenderViews. https://chromium-review.googlesource.com/c/chromium/src/+/3570062 * chore: fixup patch indices * 3380402: Remove legacy SwiftShader https://chromium-review.googlesource.com/c/chromium/src/+/3380402 * 3570254: [Local Fonts] Rename permission name from FONT_ACCESS to LOCAL_FONTS. https://chromium-review.googlesource.com/c/chromium/src/+/3570254 * 3572172: Rename or remove several parameters involved in creation of MimeHandler streams https://chromium-review.googlesource.com/c/chromium/src/+/3572172 * fix: add missing base/bits include * chore: fix lint * chore: remove ia32 Linux support * chore: patch out swift-format cipd dep on macOS * build: apply patch better * build: reset all caches * build: update zip manifests to remove swiftshared libraries Refs: https://chromium-review.googlesource.com/c/chromium/src/+/3380402 * Revert "build: update zip manifests to remove swiftshared libraries" This reverts commit 6aeec01ef1a79425a7b7d8c1cfb131a26b91c494. * Revert "3380402: Remove legacy SwiftShader" This reverts commit 4c7eebbbf2d0a459cc192959e17ae20f970c2da2. * build: remove unused swiftshader egl libraries Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <sattard@salesforce.com>
37 lines
1.6 KiB
Diff
37 lines
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Ales Pergl <alpergl@microsoft.com>
|
|
Date: Mon, 22 Oct 2018 10:47:12 -0700
|
|
Subject: dcheck.patch
|
|
|
|
https://github.com/auchenberg/volkswagen
|
|
|
|
diff --git a/src/api/api.cc b/src/api/api.cc
|
|
index d22910b209c614162363938accfc86696719ad12..22af6bf24d672817bf620b9411d1b678b7a9800f 100644
|
|
--- a/src/api/api.cc
|
|
+++ b/src/api/api.cc
|
|
@@ -9115,7 +9115,7 @@ void Isolate::SetPromiseRejectCallback(PromiseRejectCallback callback) {
|
|
}
|
|
|
|
void Isolate::PerformMicrotaskCheckpoint() {
|
|
- DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
|
|
+ //DCHECK_NE(MicrotasksPolicy::kScoped, GetMicrotasksPolicy());
|
|
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
|
|
isolate->default_microtask_queue()->PerformCheckpoint(this);
|
|
}
|
|
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
|
index 509ee8574736261307d9e270b7151197c6988649..00532d4dedf67c0764ca574b40e10ff0ce184762 100644
|
|
--- a/src/heap/heap.cc
|
|
+++ b/src/heap/heap.cc
|
|
@@ -6200,9 +6200,9 @@ void Heap::TearDown() {
|
|
void Heap::AddGCPrologueCallback(v8::Isolate::GCCallbackWithData callback,
|
|
GCType gc_type, void* data) {
|
|
DCHECK_NOT_NULL(callback);
|
|
- DCHECK(gc_prologue_callbacks_.end() ==
|
|
- std::find(gc_prologue_callbacks_.begin(), gc_prologue_callbacks_.end(),
|
|
- GCCallbackTuple(callback, gc_type, data)));
|
|
+// DCHECK(gc_prologue_callbacks_.end() ==
|
|
+// std::find(gc_prologue_callbacks_.begin(), gc_prologue_callbacks_.end(),
|
|
+// GCCallbackTuple(callback, gc_type, data)));
|
|
gc_prologue_callbacks_.emplace_back(callback, gc_type, data);
|
|
}
|
|
|