diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-12-16 13:57:01 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-12-16 13:57:01 -0500 |
commit | 06494f307850c576868831bd28a61464eab1f359 (patch) | |
tree | f281f5c46c3e0b73c7eabe22f02622dc013b0c35 /application/basilisk/extensions/pdfjs/content/pdfjschildbootstrap.js | |
parent | e7d4713e0765c79feddf2384d343d10595fa5cb3 (diff) | |
download | UXP-06494f307850c576868831bd28a61464eab1f359.tar UXP-06494f307850c576868831bd28a61464eab1f359.tar.gz UXP-06494f307850c576868831bd28a61464eab1f359.tar.lz UXP-06494f307850c576868831bd28a61464eab1f359.tar.xz UXP-06494f307850c576868831bd28a61464eab1f359.zip |
Remove Basilisk from the Unified XUL Platform repository
Development will proceed at https://github.com/MoonchildProductions/Basilisk
Diffstat (limited to 'application/basilisk/extensions/pdfjs/content/pdfjschildbootstrap.js')
-rw-r--r-- | application/basilisk/extensions/pdfjs/content/pdfjschildbootstrap.js | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/application/basilisk/extensions/pdfjs/content/pdfjschildbootstrap.js b/application/basilisk/extensions/pdfjs/content/pdfjschildbootstrap.js deleted file mode 100644 index 1f44b9c2e..000000000 --- a/application/basilisk/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(); -} - |