summaryrefslogtreecommitdiffstats
path: root/browser/extensions/pdfjs/content/pdfjschildbootstrap.js
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-06-04 13:17:38 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-06-04 13:17:38 +0200
commita1be17c1cea81ebb1e8b131a662c698d78f3f7f2 (patch)
treea92f7de513be600cc07bac458183e9af40e00c06 /browser/extensions/pdfjs/content/pdfjschildbootstrap.js
parentbf11fdd304898ac675e39b01b280d39550e419d0 (diff)
downloadUXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar
UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.gz
UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.lz
UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.tar.xz
UXP-a1be17c1cea81ebb1e8b131a662c698d78f3f7f2.zip
Issue #303 Part 1: Move basilisk files from /browser to /application/basilisk
Diffstat (limited to 'browser/extensions/pdfjs/content/pdfjschildbootstrap.js')
-rw-r--r--browser/extensions/pdfjs/content/pdfjschildbootstrap.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/browser/extensions/pdfjs/content/pdfjschildbootstrap.js b/browser/extensions/pdfjs/content/pdfjschildbootstrap.js
deleted file mode 100644
index 1f44b9c2e..000000000
--- a/browser/extensions/pdfjs/content/pdfjschildbootstrap.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Copyright 2014 Mozilla Foundation
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-/* jshint esnext:true */
-/* globals Components, PdfjsContentUtils, PdfJs, Services */
-
-'use strict';
-
-/*
- * pdfjschildbootstrap.js loads into the content process to take care of
- * initializing our built-in version of pdfjs when running remote.
- */
-
-Components.utils.import('resource://gre/modules/Services.jsm');
-Components.utils.import('resource://pdf.js/PdfJs.jsm');
-Components.utils.import('resource://pdf.js/PdfjsContentUtils.jsm');
-
-// init content utils shim pdfjs will use to access privileged apis.
-PdfjsContentUtils.init();
-
-if (Services.appinfo.processType === Services.appinfo.PROCESS_TYPE_CONTENT) {
- // register various pdfjs factories that hook us into content loading.
- PdfJs.updateRegistration();
-}
-