1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Remove the abstract BaseViewer-class

After the changes in PR 14112 the `PDFViewer`-class is now "identical" to the `BaseViewer`-class and the `PDFSinglePageViewer`-class is just a very thin wrapper around the `BaseViewer`-class.
Hence we can rename these files, and also remove the abstract `BaseViewer`-class, which helps reduce some unnecessary "closures" in the *built* viewer.

*Please note:* These changes are made in two separate commits, to allow GitHub to preserve `blame` for the affected files.
This commit is contained in:
Jonas Jenwald 2022-09-08 11:53:56 +02:00
parent 6dc4c994b8
commit 21fe5017bb
8 changed files with 7 additions and 7 deletions

View file

@ -9,7 +9,6 @@
"annotation_spec.js",
"annotation_storage_spec.js",
"api_spec.js",
"base_viewer_spec.js",
"bidi_spec.js",
"cff_parser_spec.js",
"cmap_spec.js",
@ -35,6 +34,7 @@
"pdf_find_controller_spec.js",
"pdf_find_utils_spec.js",
"pdf_history_spec.js",
"pdf_viewer_spec.js",
"primitives_spec.js",
"stream_spec.js",
"struct_tree_spec.js",

View file

@ -54,7 +54,6 @@ async function initializePDFJS(callback) {
"pdfjs-test/unit/annotation_spec.js",
"pdfjs-test/unit/annotation_storage_spec.js",
"pdfjs-test/unit/api_spec.js",
"pdfjs-test/unit/base_viewer_spec.js",
"pdfjs-test/unit/bidi_spec.js",
"pdfjs-test/unit/cff_parser_spec.js",
"pdfjs-test/unit/cmap_spec.js",
@ -81,6 +80,7 @@ async function initializePDFJS(callback) {
"pdfjs-test/unit/pdf_find_controller_spec.js",
"pdfjs-test/unit/pdf_find_utils_spec.js",
"pdfjs-test/unit/pdf_history_spec.js",
"pdfjs-test/unit/pdf_viewer_spec.js",
"pdfjs-test/unit/primitives_spec.js",
"pdfjs-test/unit/scripting_spec.js",
"pdfjs-test/unit/stream_spec.js",

View file

@ -13,7 +13,7 @@
* limitations under the License.
*/
import { PDFPageViewBuffer } from "../../web/base_viewer.js";
import { PDFPageViewBuffer } from "../../web/pdf_viewer.js";
describe("PDFViewer", function () {
describe("PDFPageViewBuffer", function () {