Set Ready For Review
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
clemensb@ PTAL and re‑add your +1 if everything still looks good. Thanks!
| Code-Review | +1 |
As on the other CL, there is not much I can review. The usage of the V8 API looks good, but the main review will have to be done by blink / loading / streaming owners.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Thanks for picking this up and driving it forward, Issack!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Gentle ping.
Another Ping. 😊
hiroshige@, haraken@ would you be able to help with the reivews please? Looking to get some traction here.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
return nullptr;nit: any reason for this to return something vs being a pure virtual method like the others above?
friend class BackgroundStreamManager;nit: can be moved below the JS one for alphabetical ordering
virtual void ResetOwnership(nit: I'd suggest adding a comment for this one to explain what this method is doing with the various output params
background_processor_->PostJSResultToMainThread(nullptr, reason);nit: This could use a param comment (example `/*param_name=*/nullptr`)
// `WasmModuleCompilation::Finish`, the watcher is destroyed beforenit: missing ()
// WASM module constants
// Use string_views instead of char c-style arrays because the Wasm bytes
// include null characters.
// A valid Wasm module should start with the magic number and the version.nit: This comment looks like it can be re-wrapped
// `WasmModuleCompilation::Finish` which will finish the compilationnit: missing ()
v8::WasmModuleCompilation* wasm_module_compilation =Should we check that this isn't nullptr?
Modulator* modulator,Is this one an input/output param? If so, it should move to the bottom of the list of vars per the style guide
Modulator* modulator,Should this check it isn't nullptr
ScriptState* script_state = modulator->GetScriptState();Should we check this isn't nullptr before using
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |