Skip to content

Commit 97eb2e6

Browse files
committed
Add missing enum value docs
1 parent 19d56f6 commit 97eb2e6

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

specs/ExtendedProcessFailed.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,12 +379,19 @@ library WebView2
379379
[v1_enum]
380380
typedef enum COREWEBVIEW2_PROCESS_FAILED_KIND {
381381
// Existing stable values.
382+
383+
// Note: docs for this enum value remain unchanged.
384+
/// Indicates that the browser process ended unexpectedly. The WebView
385+
/// automatically moves to the Closed state. The app has to recreate a new
386+
/// WebView to recover from this failure.
382387
COREWEBVIEW2_PROCESS_FAILED_KIND_BROWSER_PROCESS_EXITED,
383388

384389
/// Indicates that the main frame's render process ended unexpectedly. A new
385390
/// render process is created automatically and navigated to an error page.
386391
/// The app runs `Reload()` to try to recover from the failure.
387392
COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_EXITED,
393+
394+
/// Indicates that the main frame's render process is unresponsive.
388395
COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_UNRESPONSIVE,
389396

390397
// New values.
@@ -550,11 +557,17 @@ namespace Microsoft.Web.WebView2.Core
550557
enum CoreWebView2ProcessFailedKind
551558
{
552559
// Existing stable values
560+
561+
// Note: docs for this enum value remain unchaged.
562+
/// Indicates that the browser process ended unexpectedly. The WebView
563+
/// automatically moves to the Closed state. The app has to recreate a new
564+
/// WebView to recover from this failure.
553565
BrowserProcessExited,
554566
/// Indicates that the main frame's render process ended unexpectedly. A new
555567
/// render process is created automatically and navigated to an error page.
556568
/// The app runs `Reload()` to try to recover from the failure.
557569
RenderProcessExited,
570+
/// Indicates that the main frame's render process is unresponsive.
558571
RenderProcessUnresponsive,
559572

560573
// New values.

0 commit comments

Comments
 (0)