I have basic understanding of chromium/blink and cef.
I want to send tree data from blink chromium code to cef client application.
I have tried using "window.cefquery" js method and injected it into frame and while receiving that data on cefclient side I used "OnQuery" method, but this method is not reliable to send large data.
So is there any better way available to send data out from blink chromium ?
we want any callback which we can hook into chromium/blink's function, so that once blink's function completes it's task, our callback function from cef client application is invoked with tree data.