Re: Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-05-01 Thread TimOnGmail
So it appears that this is caused by JSNI methods somehow being morphed when the GWT app is compiled. I don't know how, but I do know that calls to Chrome proprietary APIs aren't working correctly. I modified my code to do the following: Java method calls JSNI method JSNI method calls raw

Re: Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-05-01 Thread TimOnGmail
So it appears that this is caused by JSNI methods somehow being morphed when the GWT app is compiled. I don't know how, but I do know that calls to Chrome proprietary APIs aren't working correctly. I modified my code to do the following: Java method calls JSNI method JSNI method calls raw

Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-04-27 Thread TimOnGmail
Hello all... I'm a developer on a project that uses GWT. We had been using GWT 2.6 for a long time, and finally moved to GWT 2.8 w/Java 1.8. Part of this project is a Chrome extension, where our web app needs to communicate with the extension. This was working fine until we upgraded out