Skip to content

Commit cc9a152

Browse files
committed
Core - Remove CefSettings.ApplicationClientIdForFileScanning
- Was removed upstream. This is a breaking change. Resolves #4070
1 parent 68e5fbb commit cc9a152

File tree

3 files changed

+0
-21
lines changed

3 files changed

+0
-21
lines changed

CefSharp.Core.Runtime.RefAssembly/CefSharp.Core.Runtime.netcore.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ public sealed partial class CefSettingsBase : System.IDisposable
9696
{
9797
public CefSettingsBase() { }
9898
public string AcceptLanguageList { get { throw null; } set { } }
99-
public string ApplicationClientIdForFileScanning { get { throw null; } set { } }
10099
public uint BackgroundColor { get { throw null; } set { } }
101100
public string BrowserSubprocessPath { get { throw null; } set { } }
102101
public string CachePath { get { throw null; } set { } }

CefSharp.Core.Runtime/CefSettingsBase.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -391,16 +391,6 @@ namespace CefSharp
391391
void set(bool value) { _cefSettings->cookieable_schemes_exclude_defaults = value; }
392392
}
393393

394-
/// <summary>
395-
/// GUID string used for identifying the application. This is passed to the system AV function for scanning downloaded files. By
396-
/// default, the GUID will be an empty string and the file will be treated as an untrusted file when the GUID is empty.
397-
/// </summary>
398-
property String^ ApplicationClientIdForFileScanning
399-
{
400-
String^ get() { return StringUtils::ToClr(_cefSettings->application_client_id_for_file_scanning); }
401-
void set(String^ value) { StringUtils::AssignNativeFromClr(_cefSettings->application_client_id_for_file_scanning, value); }
402-
}
403-
404394
/// <summary>
405395
/// Registers a custom scheme using the provided settings.
406396
/// </summary>

CefSharp.Core/CefSettingsBase.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -401,16 +401,6 @@ public bool CookieableSchemesExcludeDefaults
401401
set { settings.CookieableSchemesExcludeDefaults = value; }
402402
}
403403

404-
/// <summary>
405-
/// GUID string used for identifying the application. This is passed to the system AV function for scanning downloaded files. By
406-
/// default, the GUID will be an empty string and the file will be treated as an untrusted file when the GUID is empty.
407-
/// </summary>
408-
public string ApplicationClientIdForFileScanning
409-
{
410-
get { return settings.ApplicationClientIdForFileScanning; }
411-
set { settings.ApplicationClientIdForFileScanning = value; }
412-
}
413-
414404
/// <summary>
415405
/// Registers a custom scheme using the provided settings.
416406
/// </summary>

0 commit comments

Comments
 (0)