DOMVisitor and breaking changes
Posted: Wed Jul 15, 2020 2:29 pm
Hello Salvador,
I just have a compiler error from DOMVisitor, specifically in the procedure procedure DOMVisitor_OnDocAvailable on the statement
I understand this is part of the breaking changes therefore I have amended it into
Now I have an issue in GlobalCEFApp_OnProcessMessageReceived, specifically in the statement because one parameter is missing.
How can I fix this one?
Many thanks
Alberto
I just have a compiler error from DOMVisitor, specifically in the procedure procedure DOMVisitor_OnDocAvailable on the statement
Code: Select all
browser.SendProcessMessage(PID_BROWSER, msg);
Code: Select all
browser.MainFrame.SendProcessMessage(PID_BROWSER, msg);
Now I have an issue in GlobalCEFApp_OnProcessMessageReceived, specifically in the statement
Code: Select all
TempVisitor := TCefFastDomVisitor2.Create(browser, DOMVisitor_OnDocAvailable);
How can I fix this one?
Many thanks
Alberto