Fixed in this Version is the Magellan bug. Details:
https://blade.tencent.com/magellan/index_en.html
Kinkly regards
Andreas
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Update to Chromium 71.0.3578.80 available?
-
- Posts: 12
- Joined: Tue Aug 08, 2017 11:42 am
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to Chromium 71.0.3578.80 available?
Yes, it's already available :
https://www.briskbard.com/forum/viewtopic.php?f=8&t=639
Download the latest CEF4Delphi version from GitHub:
https://github.com/salvadordf/CEF4Delphi
https://www.briskbard.com/forum/viewtopic.php?f=8&t=639
Download the latest CEF4Delphi version from GitHub:
https://github.com/salvadordf/CEF4Delphi
-
- Posts: 12
- Joined: Tue Aug 08, 2017 11:42 am
Re: Update to Chromium 71.0.3578.80 available?
GlobalCEFApp.RenderProcessHandler doesn't exist in current master
How can I integrate my own renderer?
How can I integrate my own renderer?
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Update to Chromium 71.0.3578.80 available?
The current GlobalCEFApp exposes all the ICefRenderProcessHandler events :
You can also modify TCustomCefApp to create your own RenderProcessHandler in the TCustomCefApp.Create constructor but this would force you to modify TCustomCefApp every time you download a new CEF4Delphi version.
- GlobalCEFApp.OnRenderThreadCreated
- GlobalCEFApp.OnWebKitInitialized
- GlobalCEFApp.OnBrowserCreated
- GlobalCEFApp.OnBrowserDestroyed
- GlobalCEFApp.OnContextCreated
- GlobalCEFApp.OnContextReleased
- GlobalCEFApp.OnUncaughtException
- GlobalCEFApp.OnFocusedNodeChanged
- GlobalCEFApp.OnProcessMessageReceived
You can also modify TCustomCefApp to create your own RenderProcessHandler in the TCustomCefApp.Create constructor but this would force you to modify TCustomCefApp every time you download a new CEF4Delphi version.
-
- Posts: 12
- Joined: Tue Aug 08, 2017 11:42 am
Re: Update to Chromium 71.0.3578.80 available?
Thank you for your prompt reply.
The solution with the events works.
The solution with the events works.