You've already forked CEF4Delphi
							
							
				mirror of
				https://github.com/salvadordf/CEF4Delphi.git
				synced 2025-10-30 23:07:52 +02:00 
			
		
		
		
	Added v8_context_snapshot.bin to the cef binaries checking functions
- Added v8_context_snapshot.bin to the cef binaries checking functions. - Added a the Initialized property to TChromiumWindow and nowCreateBrowser is a function, not procedure.
This commit is contained in:
		| @@ -741,13 +741,14 @@ begin | ||||
|   Result := False; | ||||
|  | ||||
|   try | ||||
|     Result := GetAbsoluteDirPath(aResourcesDirPath, TempDir) and | ||||
|               FileExists(TempDir + 'natives_blob.bin')       and | ||||
|               FileExists(TempDir + 'snapshot_blob.bin')      and | ||||
|               FileExists(TempDir + 'cef.pak')                and | ||||
|               FileExists(TempDir + 'cef_100_percent.pak')    and | ||||
|               FileExists(TempDir + 'cef_200_percent.pak')    and | ||||
|               FileExists(TempDir + 'cef_extensions.pak')     and | ||||
|     Result := GetAbsoluteDirPath(aResourcesDirPath, TempDir)  and | ||||
|               FileExists(TempDir + 'natives_blob.bin')        and | ||||
|               FileExists(TempDir + 'snapshot_blob.bin')       and | ||||
|               FileExists(TempDir + 'v8_context_snapshot.bin') and | ||||
|               FileExists(TempDir + 'cef.pak')                 and | ||||
|               FileExists(TempDir + 'cef_100_percent.pak')     and | ||||
|               FileExists(TempDir + 'cef_200_percent.pak')     and | ||||
|               FileExists(TempDir + 'cef_extensions.pak')      and | ||||
|               (not aCheckDevResources or FileExists(TempDir + 'devtools_resources.pak')); | ||||
|   except | ||||
|     on e : exception do | ||||
|   | ||||
		Reference in New Issue
	
	Block a user