We noticed that the new Chromium-based WebView on Android 4.4 runs in single-process mode,
and that presumably this is the reason why certain features are missing. For example, WebGL,
WebRTC, webaudio, etc.
- What is the reason behind this design?
- Is it likely that the WebView will remain single-process for the foreseeable future, or is a
multi-process version in the works?
- If it remains single-process, will the missing features be implemented, or will the WebView
continue to lack things like WebGL?
/Anders--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
On Thu, Nov 21, 2013 at 3:04 PM, <anders.e...@sonymobile.com> wrote:
We noticed that the new Chromium-based WebView on Android 4.4 runs in single-process mode,
and that presumably this is the reason why certain features are missing. For example, WebGL,
WebRTC, webaudio, etc.
- What is the reason behind this design?
Because on Android you can't create processes nilly-willy :-). They need to be started by the framework itself. For example, for Chrome we actually start a new bound service in its own process to host a renderer, and this requires specific bits in the application manifest, specific (and complicated) logic in the application itself.
This doesn't scale at all to liberal applications that want to just use a WebView. Also, it uses much more memory :-( Note that the previous WebView was also single-process, by design.
- Is it likely that the WebView will remain single-process for the foreseeable future, or is a
multi-process version in the works?I'm not aware of such plans.
Hi all,What about rendering performance? Does single process mode have lower performance comparing with multiple process mode? Thanks.
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/fe1b69bd-4646-4f28-b4c2-f521c522aca1%40chromium.org.