You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Packages/Passport/Runtime/Scripts/Public/Passport.cs
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public class Passport
37
37
privatePassportImpl?_passportImpl;
38
38
publicstringEnvironment{get;privateset;}
39
39
40
-
privateIWebBrowserClient_webBrowserClient;
40
+
privateIWebBrowserClient?_webBrowserClient;
41
41
42
42
// Keeps track of the latest received deeplink
43
43
privatestaticstring?_deeplink;
@@ -140,15 +140,15 @@ private Passport()
140
140
/// <param name="redirectUri">The URL where the browser will redirect after successful authentication.</param>
141
141
/// <param name="logoutRedirectUri">The URL where the browser will redirect after logout is complete.</param>
142
142
/// <param name="engineStartupTimeoutMs">(Windows only) Timeout duration in milliseconds to wait for the default Windows browser engine to start.</param>
143
-
/// <param name="webBrowserClient">(Windows only) Custom Windows browser to use instead of the default browser in the SDK.</param>
143
+
/// <param name="windowsWebBrowserClient">(Windows only) Custom Windows browser to use instead of the default browser in the SDK.</param>
/// Initialises the appropriate web browser and sets up browser communication.
203
203
/// </summary>
204
204
/// <param name="engineStartupTimeoutMs">(Windows only) Timeout duration in milliseconds to wait for the default Windows browser engine to start.</param>
205
-
/// <param name="webBrowserClient">(Windows only) Custom Windows browser to use instead of the default browser in the SDK.</param>
205
+
/// <param name="windowsWebBrowserClient">(Windows only) Custom Windows browser to use instead of the default browser in the SDK.</param>
0 commit comments