Don't allocate WebTransportCloseInfo on stack
blink::WebTransport::OnClosed() was allocating a WebTransportCloseInfo
object on the stack. Since it is a garbage-collected object, this is
wrong. Allocate it with MakeGarbageCollected<>() instead.
Fixed: 352872238
Change-Id: I83484021d5f3f6d49d3c222c8f2dc34219f2d240
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5725413
Commit-Queue: Nidhi Jaju nidhijaju@chromium.org
Reviewed-by: Nidhi Jaju nidhijaju@chromium.org
Auto-Submit: Adam Rice ricea@chromium.org
Cr-Commit-Position: refs/heads/main@{#1331525}