Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Migrate runZoned to runZonedGuarded #22198

Merged
merged 1 commit into from
Oct 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/web_ui/dev/browser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class Browser {
// Don't return a Future here because there's no need for the caller to wait
// for the process to actually start. They should just wait for the HTTP
// request instead.
runZoned(() async {
runZonedGuarded(() async {
var process = await startBrowser();
_processCompleter.complete(process);

Expand Down Expand Up @@ -110,7 +110,7 @@ abstract class Browser {
}

_onExitCompleter.complete();
}, onError: (dynamic error, StackTrace stackTrace) {
}, (dynamic error, StackTrace stackTrace) {
// Ignore any errors after the browser has been closed.
if (_closed) {
return;
Expand Down