Add the possibility to dispatch some pdf.js events at the chrome level (bug 1904585)

This commit is contained in:
Calixte Denizet 2024-06-25 16:52:47 +02:00
parent 11cb3a8e11
commit 35474f8ef4
4 changed files with 72 additions and 24 deletions

View file

@ -46,6 +46,12 @@ class BaseExternalServices {
}
async getNimbusExperimentData() {}
async getGlobalEventNames() {
return null;
}
dispatchGlobalEvent(_event) {}
}
export { BaseExternalServices };