Skip to content

Commit b8dd8c0

Browse files
authored
Core - Add TransitionType.DirectLoad enum value (#3551)
which was added in chromiumembedded/cef@a141082
1 parent 11c41ae commit b8dd8c0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

CefSharp/Enums/TransitionType.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ public enum TransitionType : uint
1919
LinkClicked = 0,
2020

2121
/// <summary>
22-
/// Source is some other "explicit" navigation action such as creating a new
23-
/// browser or using the LoadURL function. This is also the default value
24-
/// for navigations where the actual type is unknown.
22+
/// Source is some other "explicit" navigation. This is the default value for
23+
/// navigations where the actual type is unknown. See also <see cref="DirectLoad"/>.
2524
/// </summary>
2625
Explicit = 1,
2726

@@ -69,9 +68,15 @@ public enum TransitionType : uint
6968

7069
/// <summary>
7170
/// Used the Forward or Back function to navigate among browsing history.
71+
/// Will be ORed to the transition type for the original load.
7272
/// </summary>
7373
ForwardBack = 0x01000000,
7474

75+
/// <summary>
76+
/// Loaded a URL directly via CreateBrowser, LoadURL or LoadRequest.
77+
/// </summary>
78+
DirectLoad = 0x02000000,
79+
7580
/// <summary>
7681
/// The beginning of a navigation chain.
7782
/// </summary>

0 commit comments

Comments
 (0)