File tree 2 files changed +0
-21
lines changed
2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -7154,16 +7154,6 @@ class V8_EXPORT Isolate {
7154
7154
void SetAllowCodeGenerationFromStringsCallback(
7155
7155
AllowCodeGenerationFromStringsCallback callback);
7156
7156
7157
- /**
7158
- * Set the callback to invoke to check if wasm compilation from
7159
- * the specified object is allowed. By default, wasm compilation
7160
- * is allowed.
7161
- *
7162
- * Similar for instantiate.
7163
- */
7164
- void SetAllowWasmCompileCallback(AllowWasmCompileCallback callback);
7165
- void SetAllowWasmInstantiateCallback(AllowWasmInstantiateCallback callback);
7166
-
7167
7157
/**
7168
7158
* Check if V8 is dead and therefore unusable. This is the case after
7169
7159
* fatal errors such as out-of-memory situations.
Original file line number Diff line number Diff line change @@ -8658,17 +8658,6 @@ void Isolate::SetAllowCodeGenerationFromStringsCallback(
8658
8658
isolate->set_allow_code_gen_callback(callback);
8659
8659
}
8660
8660
8661
- void Isolate::SetAllowWasmCompileCallback(AllowWasmCompileCallback callback) {
8662
- i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
8663
- isolate->set_allow_wasm_compile_callback(callback);
8664
- }
8665
-
8666
- void Isolate::SetAllowWasmInstantiateCallback(
8667
- AllowWasmInstantiateCallback callback) {
8668
- i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
8669
- isolate->set_allow_wasm_instantiate_callback(callback);
8670
- }
8671
-
8672
8661
bool Isolate::IsDead() {
8673
8662
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this);
8674
8663
return isolate->IsDead();
You canβt perform that action at this time.
0 commit comments