Hi,I know, in September, Chrome will remove support for NPAPI. But when i check Chrome extension IE Tab (https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd) in Chrome 45 or 46, plugins like Java or Unity are still working.How it is described here - http://stackoverflow.com/questions/30391863/can-i-embed-program-through-native-messaging-in-chrome-like-old-npapi-plugins#answer-30402579 , they probably use HWND and Native messaging to find Chrome process for tab and then inject "IE engine" to the tab, which can run ActiveX plugins.I would like to know, how is that possible ? There are not any APIs to do this or I did not find it.Can somebody explain how reproduce this hack (or whatever it is) ?
It will be supported by Chrome in the future ? If Google does not like old NPAPI, this is probably something they do not want too.
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
"we'll replace the whole rendering engine of a tab and will do that only on Windows"
handleResize: function() {
window.setTimeout(function() {
var msgResize = {
type: 'RESIZE',
innerWidth: this.getIEWidth(),
innerHeight: this.getIEHeight()
};
NativeHost.postMessage(msgResize);
}.bind(this), this.RESIZE_DELAY);
}