Skip to content

Commit 33c17c0

Browse files
expanded background info, fixed syntax error in cpp sample
1 parent a24cd33 commit 33c17c0

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

specs/BrowserTaskManager.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Background
22
The 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
412
Manager manually, so we do not need to provide an API to close it.
513

614
In 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].
2129
void ScriptComponent::ShowTaskManager()
2230
{
23-
CHECK_FAILURE(m_webview->ShowTaskManager())
31+
CHECK_FAILURE(m_webview->ShowTaskManager());
2432
}
2533

2634

0 commit comments

Comments
 (0)