This is to track all the work to implement ServiceWorkerContainer mojo interface.
According to Falken's design:
https://docs.google.com/document/d/1FxFISiZKBH2MALypxt-aoGAbmyco-7kEMi1zMe5KrzE/edit?pli=1#
"Interface ServiceWorkerContainer roughly corresponds to navigator.serviceWorker. Actually needed for anything that could access a ServiceWorkerRegistration/ServiceWorker. ..... But eventually anything that can touch these objects should be a ServiceWorkerContainer, so it’s OK to use this name.
When the browser initialized the navigation or SW startup, it should send the SWContainer along.
interface ServiceWorkerContainer {
SetController(ServiceWorkerObject controller);
ServiceWorkerStateChanged(ServiceWorkerObject);
ServiceWorkerRegistrationUpdateFound(ServiceWorkerRegistrationObject)
PostMessage();
};
"
Comment 1 by xiaofeng...@intel.com
, Aug 16 2017