mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 02:05:37 +02:00
Remove the unused DefaultExternalServices.createDownloadManager
options (PR 12191 follow-up)
This commit is contained in:
parent
67e1c37e0f
commit
9369adb4bd
4 changed files with 4 additions and 4 deletions
|
@ -106,7 +106,7 @@ class DefaultExternalServices {
|
||||||
|
|
||||||
static reportTelemetry(data) {}
|
static reportTelemetry(data) {}
|
||||||
|
|
||||||
static createDownloadManager(options) {
|
static createDownloadManager() {
|
||||||
throw new Error("Not implemented: createDownloadManager");
|
throw new Error("Not implemented: createDownloadManager");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -407,7 +407,7 @@ class ChromeExternalServices extends DefaultExternalServices {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
static createDownloadManager(options) {
|
static createDownloadManager() {
|
||||||
return new DownloadManager();
|
return new DownloadManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -388,7 +388,7 @@ class FirefoxExternalServices extends DefaultExternalServices {
|
||||||
FirefoxCom.request("reportTelemetry", JSON.stringify(data));
|
FirefoxCom.request("reportTelemetry", JSON.stringify(data));
|
||||||
}
|
}
|
||||||
|
|
||||||
static createDownloadManager(options) {
|
static createDownloadManager() {
|
||||||
return new DownloadManager();
|
return new DownloadManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ class GenericPreferences extends BasePreferences {
|
||||||
}
|
}
|
||||||
|
|
||||||
class GenericExternalServices extends DefaultExternalServices {
|
class GenericExternalServices extends DefaultExternalServices {
|
||||||
static createDownloadManager(options) {
|
static createDownloadManager() {
|
||||||
return new DownloadManager();
|
return new DownloadManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue