File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Background
22The WebView2 team has been asked to provide an API to expose the Browser Task
3- Manager. At the current time, it is expected that the user will close the Task
3+ Manager. The Browser Task Manager is a window helpful for debugging that
4+ displays the different processes associated with the current browser process and
5+ what they're used for. For instance, it could denote that a particular process
6+ is a renderer process and would show the different web pages rendered by that
7+ process. In a chromium browser it can be opened by the end user by pressing
8+ ` Shift+Esc ` or from the browser's title bar's context menu's
9+ ` Browser task manager ` entry.
10+
11+ At the current time, it is expected that the user will close the Task
412Manager manually, so we do not need to provide an API to close it.
513
614In this document we describe the updated API. We'd appreciate your feedback.
@@ -20,7 +28,7 @@ wil::com_ptr<ICoreWebView2_5> m_webview;
2028// [Script -> Show Task Manager].
2129void ScriptComponent::ShowTaskManager ()
2230{
23- CHECK_FAILURE (m_webview->ShowTaskManager())
31+ CHECK_FAILURE (m_webview->ShowTaskManager());
2432}
2533
2634
You can’t perform that action at this time.
0 commit comments