We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f96ee9 commit b80d9e4Copy full SHA for b80d9e4
1 file changed
CefSharp/Enums/ResultCode.cs
@@ -87,7 +87,21 @@ public enum ResultCode
87
/// </summary>
88
SystemResourceExhausted = 37,
89
90
- ChromeLast = 39,
+ /// <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
99
+ /// Upon encountering a commit failure in a process, PartitionAlloc terminated
100
+ /// another process deemed less important.
101
102
+ TerminatedByOtherProcessOnCommitFailure = 39,
103
104
+ ChromeLast = 40,
105
106
// The following values should be kept in sync with Chromium's
107
// sandbox::TerminationCodes type.
0 commit comments