pacificIT / chromiumembedded

Automatically exported from code.google.com/p/chromiumembedded
0 stars 1 forks source link

CEF3: Allow user communication between different processes #544

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Add a message passing interface for user-defined communication between 
different processes. This is composed of multiple parts:

1. A CefRenderProcessHandler interface retrieved via CefApp that supports 
execution of user code in the renderer process.
2. A CefProcessMessage class with name and argument attributes. The argument 
attribute is a new CefListValue type that supports many different data types.
3. A CefBrowser::SendProcessMessage function for sending a message to a 
different process.
4. CefClient::OnProcessMessage and CefRenderProcessHandler::OnProcessMessage 
callbacks for handling messages sent from a different process.

Original issue reported on code.google.com by magreenb...@gmail.com on 9 Mar 2012 at 2:54

GoogleCodeExporter commented 9 years ago
Added in CEF3 revision 523.

Original comment by magreenb...@gmail.com on 12 Mar 2012 at 11:51