LibWebView: Rename the Chrome process type to Browser

This commit is contained in:
Timothy Flynn 2025-03-15 17:10:13 -04:00 committed by Tim Flynn
parent e20d7be15f
commit 18eee7e3f0
Notes: github-actions[bot] 2025-03-15 23:58:38 +00:00
3 changed files with 8 additions and 8 deletions

View file

@ -360,8 +360,8 @@ void Application::process_did_exit(Process&& process)
case ProcessType::WebWorker:
dbgln_if(WEBVIEW_PROCESS_DEBUG, "WebWorker {} died, not sure what to do.", process.pid());
break;
case ProcessType::Chrome:
dbgln("Invalid process type to be dying: Chrome");
case ProcessType::Browser:
dbgln("Invalid process type to be dying: Browser");
VERIFY_NOT_REACHED();
}
}