Chromium Code Reviews
Description[Extensions] Use a separate IPC message for extension events
Currently, extension events are dispatched using the MessageInvoke IPC,
which instructs the the renderer to invoke the JS methods to disptach
the event. This has a few problems:
- It reuses the invoke IPC when it really shouldn't. Looks like there's
a long-standing TODO to change this.
- It's incompatible if we ever change the way we want to dispatch
events, as we are with the C++ bindings work.
Migrate event dispatching to a separate IPC message, and remove the
now-unneeded user gesture parameter from the MessageInvoke IPC.
BUG=666004
BUG=653596
Committed: https://crrev.com/ff516ab47c3fe130da26006e0f677ee5a78a9f19
Cr-Commit-Position: refs/heads/master@{#432645}
Patch Set 1 #Patch Set 2 : fixtests #Patch Set 3 : more #
Total comments: 7
Patch Set 4 : lazyboys #Messages
Total messages: 30 (22 generated)
|