Page 1 of 1

New TChromium properties

Posted: Wed Aug 05, 2020 2:19 pm
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 :

Re: New TChromium properties

Posted: Fri Aug 07, 2020 8:18 am
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(

Re: New TChromium properties

Posted: Sat Aug 08, 2020 8:25 am
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"

Re: New TChromium properties

Posted: Sat Aug 08, 2020 10:52 am
by dilfich
False or True the test shows the same thing. :?

Code: Select all

Chromium1.QuicAllowed:= False;
Chromium1.CreateBrowser(BufferPanel1, '', TempContext);

Re: New TChromium properties

Posted: Wed Oct 14, 2020 10:56 am
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)