Page 1 of 1
Update to Chromium 71.0.3578.80 available?
Posted: Wed Dec 19, 2018 3:06 pm
by andreas michelberger
Fixed in this Version is the Magellan bug. Details:
https://blade.tencent.com/magellan/index_en.html
Kinkly regards
Andreas
Re: Update to Chromium 71.0.3578.80 available?
Posted: Wed Dec 19, 2018 4:25 pm
by salvadordf
Re: Update to Chromium 71.0.3578.80 available?
Posted: Thu Dec 20, 2018 12:04 pm
by andreas michelberger
GlobalCEFApp.RenderProcessHandler doesn't exist in current master
How can I integrate my own renderer?
Re: Update to Chromium 71.0.3578.80 available?
Posted: Thu Dec 20, 2018 12:35 pm
by salvadordf
The current GlobalCEFApp exposes all the ICefRenderProcessHandler events :
- GlobalCEFApp.OnRenderThreadCreated
- GlobalCEFApp.OnWebKitInitialized
- GlobalCEFApp.OnBrowserCreated
- GlobalCEFApp.OnBrowserDestroyed
- GlobalCEFApp.OnContextCreated
- GlobalCEFApp.OnContextReleased
- GlobalCEFApp.OnUncaughtException
- GlobalCEFApp.OnFocusedNodeChanged
- GlobalCEFApp.OnProcessMessageReceived
The easiest solution would be to move all the code from your RenderProcessHandler to these GlobalCEFApp 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.
Re: Update to Chromium 71.0.3578.80 available?
Posted: Thu Dec 20, 2018 1:19 pm
by andreas michelberger
Thank you for your prompt reply.
The solution with the events works.