The Chrome extensions system has its own implementation of events (typically
exposed as chrome.<api>.onFoo
, e.g. chrome.tabs.onUpdated
). This doc
provides some notes about its implementation, specifically how event listeners
are registered and how they are dispatched.
An event listener registered in the renderer process is sent to the browser
process (via IPC). The browser process stores the listener information in
EventListenerMap
. Events are dispatched from the browser process to the
renderer process via IPC. If browser process requires to persist any listener,
it does so by storing the listener information in the prefs.
-
Listener contexts: Typically denotes the page/script where the listener is registered from, e.g. an extension's background page or an extension's service worker script.
-
Lazy contexts: Contexts that are not persistent and typically shut down when inactive, e.g. an event page's background script or an extension service worker script. Non-lazy contexts are often called "persistent" contexts.
-
Persistent listeners / Non-lazy listeners: Listeners from contexts that are not lazy.
-
Lazy listeners: Listeners from lazy context. See the scenario description (Case 1 and Case 2) below for quick explanation of how registration of a listener from a lazy context can result in two (a lazy and a non-lazy) listeners. An event can be dispatched to these listeners while the corresponding lazy context is not running.
-
Filtered events: A listener can specify additional matching criterea that we call event filters. Some events support filters. IPCs (along with most but not all of the browser/ or renderer/ code) use
DictionaryValue
to represent an event filter.
Event listeners are registered in JavaScript in the renderer process. The event bindings code handles this registration and the browser process is made aware of it via IPC.
In particular, a message filter (ExtensionMessageFilter
) receives event
registration IPCs and it passes them to EventRouter
to be stored in
EventListenerMap
. If the listener is required to be persisted (for lazy
events), they are also recorded in ExtensionPrefs
.
Note that when the renderer context is shut down, it removes the listener. The exception is lazy event listener, which is not removed.
When a lazy listener is added for an event, a regular (non-lazy) listener
(call it L1
) is added for it and in addition to that, a lazy variant of the
listener (call it L2
) is also added. L2
helps browser process remember that
the listener should be persisted and it should have lazy behavior.
EventRouter
is responsible for dispatching events from the browser process.
When an event is required to be dispatched, EventRouter
fetches EventListeners
from EventListenerMap
and dispatches them to appropriate contexts (renderer
or service worker scripts)
Recall that a lazy listener is like a regular listeners, except that it is registered from a lazy context. A lazy context can be shut down. If an interesting event ocurrs while a lazy context (with a listener to that event) is no longer running, then the lazy context is woken up to dispatch the event.
The following (simplified) steps describe how dispatch is performed.
- Because
EventListenerMap
will contain an entry for the listener (L1
), it will dispatch the event in normal fashion: by sending an IPC to the renderer throughExtensionMessageFilter
.
-
If the context is not running, then
EventListenerMap
will not have any entry forL1
(because context shutdown will removeL1
), but it will have an entry for the lazy version of it,L2
. Note thatL2
will exist even if the browser process is restarted,EventRouter::OnExtensionLoaded
will have loaded these lazy events throughEventListenerMap::Load(Un)FilteredLazyListeners
. -
Realize that
L2
is lazy, so wake up its lazy context. Waking up an event page context entails spinning up its background page, while waking up a service worker context means starting the service worker. -
The lazy context will register
L1
andL2
again, because the same code that added the initial listeners will run again. This is an important step that isn't intuitive. Note thatL2
, since it already exists in the browser process, is not re-added. -
Dispatch
L1
(same as Case 1 above).
-
ESW events behave similar to event page events, i.e. lazy events.
-
ESW events are registered from worker threads, instead of main renderer threads.
-
Similarly, event dispatch target is worker thread instead of main renderer thread. Therefore, at dispatch time, browser process knows about the worker thread id in a RenderProcessHost. This is why worker event listener IPCs have
worker_thread_id
param in them.
-
Explain filters a bit more, where filter matching is performed and how much of it lives in the renderer/ process.
-
Describe what "manual" removal of event listeners means.