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.

New TChromium properties

Post Reply
User avatar
salvadordf
Posts: 4047
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

New TChromium properties

Post by salvadordf »

Hi,

I just uploaded a new version of CEF4Delphi with 2 new TChromium properties :
  • TChromium.NetworkPredictions : Used to enable or disable the network predictions. Possible values : CEF_NETWORK_PREDICTION_ALWAYS, CEF_NETWORK_PREDICTION_WIFI_ONLY and CEF_NETWORK_PREDICTION_NEVER. The default value is CEF_NETWORK_PREDICTION_WIFI_ONLY. Thanks for the suggestion dilfich! :D
  • TChromium.QuicAllowed : Used to enable or disable the QUIC protocol. You can test it here : https://quic.stream/
The CEF binaries are the same as the previous version :
dilfich
Posts: 330
Joined: Thu Nov 30, 2017 1:17 am

Re: New TChromium properties

Post by dilfich »

Code: Select all

Chromium1.QuicAllowed:= False;
Chromium1.CreateBrowser(BufferPanel1, '', TempContext);
DevTools shows the H2 Protocol, the add-on doesn't change anything, what am I doing wrong?
Or did I misunderstand something(
User avatar
salvadordf
Posts: 4047
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: New TChromium properties

Post by salvadordf »

When you click the "TEST QUIC" button on https://quic.stream/ and you have quic enalbed you will see this message below the button :
This site offers the HTTP Alternative Service(s): quic=":443"; ma=2592000; v="39"
dilfich
Posts: 330
Joined: Thu Nov 30, 2017 1:17 am

Re: New TChromium properties

Post by dilfich »

False or True the test shows the same thing. :?

Code: Select all

Chromium1.QuicAllowed:= False;
Chromium1.CreateBrowser(BufferPanel1, '', TempContext);
dilfich
Posts: 330
Joined: Thu Nov 30, 2017 1:17 am

Re: New TChromium properties

Post by dilfich »

dilfich wrote: Fri Aug 07, 2020 8:18 am DevTools shows the H2 Protocol, the add-on doesn't change anything, what am I doing wrong?
Or did I misunderstand something(
I misunderstood :)
And protocol H2 can be disabled using --disable-http2 (test - http2.akamai.com/demo)
Post Reply