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.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Update to Chromium 71.0.3578.80 available?

Post Reply
andreas michelberger
Posts: 12
Joined: Tue Aug 08, 2017 11:42 am

Update to Chromium 71.0.3578.80 available?

Post by andreas michelberger »

Fixed in this Version is the Magellan bug. Details:
https://blade.tencent.com/magellan/index_en.html

Kinkly regards
Andreas
User avatar
salvadordf
Posts: 4564
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to Chromium 71.0.3578.80 available?

Post by salvadordf »

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
andreas michelberger
Posts: 12
Joined: Tue Aug 08, 2017 11:42 am

Re: Update to Chromium 71.0.3578.80 available?

Post by andreas michelberger »

GlobalCEFApp.RenderProcessHandler doesn't exist in current master
How can I integrate my own renderer?
User avatar
salvadordf
Posts: 4564
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Update to Chromium 71.0.3578.80 available?

Post 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.
andreas michelberger
Posts: 12
Joined: Tue Aug 08, 2017 11:42 am

Re: Update to Chromium 71.0.3578.80 available?

Post by andreas michelberger »

Thank you for your prompt reply.
The solution with the events works.
Post Reply