Integrate Google Chrome browser into eclipse

eclipse, java, swt

Solution

No, as of current stable release of google chrome, you cannot use it inside SWT. The reason is that google chrome (and essentially chromium) doesn't support ActiveX (like IE, Firefox, Safari etc) but is based on NPAPI. (Note: I am considering that you are working on Windows machine as you haven't mentioned in your question !!)

But there are projects which are trying to make an embeddable version of chromium. See these links:

- Chromiumembedded

- Is Google Chrome embeddable?

Problem

I am trying to create an application using SWT Browser. Is it possible to integrate Google Chrome as browser into Eclipse (not as external web browser)?

Original source

Related problems