1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 90.6.0

This commit is contained in:
Salvador Díaz Fau
2021-04-28 14:38:07 +02:00
parent 23ee5819d6
commit f044e754fa
5 changed files with 18 additions and 18 deletions

View File

@@ -65,8 +65,8 @@ uses
const
CEF_SUPPORTED_VERSION_MAJOR = 90;
CEF_SUPPORTED_VERSION_MINOR = 5;
CEF_SUPPORTED_VERSION_RELEASE = 9;
CEF_SUPPORTED_VERSION_MINOR = 6;
CEF_SUPPORTED_VERSION_RELEASE = 0;
CEF_SUPPORTED_VERSION_BUILD = 0;
CEF_CHROMEELF_VERSION_MAJOR = 90;
@@ -102,7 +102,7 @@ type
FRootCache : ustring;
FUserDataPath : ustring;
FUserAgent : ustring;
FProductVersion : ustring;
FUserAgentProduct : ustring;
FLocale : ustring;
FLocalesRequired : ustring;
FLogFile : ustring;
@@ -417,7 +417,7 @@ type
property PersistSessionCookies : Boolean read FPersistSessionCookies write FPersistSessionCookies;
property PersistUserPreferences : Boolean read FPersistUserPreferences write FPersistUserPreferences;
property UserAgent : ustring read FUserAgent write FUserAgent;
property ProductVersion : ustring read FProductVersion write FProductVersion;
property UserAgentProduct : ustring read FUserAgentProduct write FUserAgentProduct;
property Locale : ustring read FLocale write FLocale;
property LogFile : ustring read FLogFile write FLogFile;
property LogSeverity : TCefLogSeverity read FLogSeverity write FLogSeverity;
@@ -652,7 +652,7 @@ begin
FRootCache := '';
FUserDataPath := '';
FUserAgent := '';
FProductVersion := '';
FUserAgentProduct := '';
FLocale := '';
FLogFile := '';
FBrowserSubprocessPath := '';
@@ -1373,7 +1373,7 @@ begin
aSettings.persist_session_cookies := Ord(FPersistSessionCookies);
aSettings.persist_user_preferences := Ord(FPersistUserPreferences);
aSettings.user_agent := CefString(FUserAgent);
aSettings.product_version := CefString(FProductVersion);
aSettings.user_agent_product := CefString(FUserAgentProduct);
aSettings.locale := CefString(FLocale);
aSettings.log_file := CefString(FLogFile);
aSettings.log_severity := FLogSeverity;