Reputation: 4109
I have a running WIN32 application. There a window in this application where I want to show web content using CEF3. But, I am facing problems and the entire window becomes white without showing any web page content. So I have the following questions:
Any help is much appreciated.
Upvotes: 0
Views: 3116
Reputation: 148
About the question number 2: every windows application has its own "main window" and wndProc that receives all the messages sent by his children. And the sample win32 cefclient shows how to integrate cef message loop inside the application's message loop. And if you don't handle and dispatch cef messages in proper way the browser window becomes white.
Upvotes: 0
Reputation: 1103
For windows users there is possible to use multi threaded message loop (CefSettings). It is allow maintain browser windows via own message loop. But there is good practice use single threaded message loop, - you can call CefDoMessageLoopWork periodiacally on idle or some additional events. It is possible even with existing message loop.
I'm not sure what you mean.
CefSettings.BrowserSubprocessPath specifies which executable will be used for child processes. While you are integrating it in other process, looks like it is one possible solution and in task manager you will see processes as you named it.
Upvotes: 1