I've been working with the
Chromium Embedded Framework (in windows)
which gives webkit version 534.20. I am trying to get a custom scheme
to work with XHR.
By way of background, I first updated the Cef code so that custom
schemes can be declared "non-standard", which avoids certain parsing
errors. Non-standard schemes include "data", "javascript", "file".
Webkit has a mechanism for registering standard schemes, so all I
needed to do was /not/ register custom schemes that were non-standard.
Just curious of your use case, do you really need non-standard scheme?
Wouldn't it be easier to just define a custom scheme? I see people do
that all the time with QtWebKit for hybrid apps.