Page 1 of 1

Add plugin into CEF

PostPosted: Thu Nov 21, 2013 1:45 pm
by hanJon
HI!

I am using javachromiumembedded <https://code.google.com/p/javachromiumembedded/> and I am trying to access Google hangouts through it. However, hangouts requires a plugin. How do I add the necessary plugin into the javachromiumembedded application? Because I click install plugin and nothing happens.

Thanks!

Re: Add plugin into CEF

PostPosted: Thu Nov 21, 2013 2:18 pm
by magreenblatt
You will need to manually install the plugin first. You can then modify the JCEF C++ source code and use the functions from cef_plugin.h to load the plugin. For example, call CefAddWebPluginPath from Java_org_cef_CefContext_N_1Initialize in native/CefContext.cpp. This API will eventually be exposed via Java but that's still a ways off.