Hi,
It appears that Google tries to force user to use the latest version of browsers. It also displays a warning message for earlier version of IE Browser.
The latest Google Chrome is v38. The current version of EO.WebBrowser is based on Chrome v33. We are planing to re-sync with the latest Chrome code base soon.
As a temporarily workaround, you can overrides the WebView's CustomUserAgent property to trick Google Docs into thinking that you are in fact using the latest Google Chrome. This seems to be working fine and we are not aware of any specific features that Google Doc really needs from the latest Google Chrome ---- it seems that Google simply is using its Google Doc platform to force user to update their Chrome browsers.
You can use the following code to "pretend" to be Chrome v38:
Code: C#
webView.CustomUserAgent =
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36";
Here "Chrome/38" is the key value. Without the above line EO.WebBrowser would report user agent as "Chrome/33", which is what triggered the "no longer supported" message.
Hope this helps. Please feel free to let us know if you still have any more questions.
Thanks!