Page 1 of 1

CefExecuteProcess

PostPosted: Mon Nov 26, 2012 6:13 pm
by Mayhew
Just a quick question on the need for CefExecuteProcess(). It seems like would only be required if command_line_args_disabled = false. If that is the case, can it simply not be called at all in that scenario?

Re: CefExecuteProcess

PostPosted: Mon Nov 26, 2012 6:20 pm
by magreenblatt
CefExecuteProcess is necessary to run child processes (renderer, plugin, GPU).

Re: CefExecuteProcess

PostPosted: Mon Apr 08, 2013 9:38 am
by Infovision
If we use single process, we don't need to call this function. Is it correct?

Re: CefExecuteProcess

PostPosted: Mon Apr 08, 2013 11:28 am
by magreenblatt
Infovision wrote:If we use single process, we don't need to call this function. Is it correct?

Yes, but keep in mind that single-process mode is not recommended for production applications. You should design your application to work in multi-process mode.