Skip to content

Commit b80d9e4

Browse files
committed
Core - Update ResultCode enum to add process de-elevation exit code
Resolves #5152
1 parent 2f96ee9 commit b80d9e4

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

CefSharp/Enums/ResultCode.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,21 @@ public enum ResultCode
8787
/// </summary>
8888
SystemResourceExhausted = 37,
8989

90-
ChromeLast = 39,
90+
/// <summary>
91+
/// The browser process exited because it was re-launched without elevation.
92+
/// </summary>
93+
/// <remarks>
94+
/// See https://github.com/chromiumembedded/cef/issues/3960
95+
/// </remarks>
96+
NormalExitAutoDeElevated = 38,
97+
98+
/// <summary>
99+
/// Upon encountering a commit failure in a process, PartitionAlloc terminated
100+
/// another process deemed less important.
101+
/// </summary>
102+
TerminatedByOtherProcessOnCommitFailure = 39,
103+
104+
ChromeLast = 40,
91105

92106
// The following values should be kept in sync with Chromium's
93107
// sandbox::TerminationCodes type.

0 commit comments

Comments
 (0)