()
| 51 | super(); |
| 52 | let listener; |
| 53 | const exitEventHandler = () => { |
| 54 | return this.alwaysContinueBubbling(() => { |
| 55 | this.exit(); |
| 56 | chrome.runtime.sendMessage({ |
| 57 | handler: "sendMessageToFrames", |
| 58 | message: { handler: "userIsInteractingWithThePage" }, |
| 59 | }); |
| 60 | }); |
| 61 | }; |
| 62 | |
| 63 | super.init({ |
| 64 | name: "grab-back-focus", |
nothing calls this directly
no test coverage detected