diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /modules/libjar/zipwriter/ZipWriterModule.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'modules/libjar/zipwriter/ZipWriterModule.cpp')
-rw-r--r-- | modules/libjar/zipwriter/ZipWriterModule.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/modules/libjar/zipwriter/ZipWriterModule.cpp b/modules/libjar/zipwriter/ZipWriterModule.cpp new file mode 100644 index 000000000..2891da58d --- /dev/null +++ b/modules/libjar/zipwriter/ZipWriterModule.cpp @@ -0,0 +1,37 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include "mozilla/ModuleUtils.h" +#include "nsDeflateConverter.h" +#include "nsZipWriter.h" + +NS_GENERIC_FACTORY_CONSTRUCTOR(nsDeflateConverter) +NS_GENERIC_FACTORY_CONSTRUCTOR(nsZipWriter) + +NS_DEFINE_NAMED_CID(DEFLATECONVERTER_CID); +NS_DEFINE_NAMED_CID(ZIPWRITER_CID); + +static const mozilla::Module::CIDEntry kZipWriterCIDs[] = { + { &kDEFLATECONVERTER_CID, false, nullptr, nsDeflateConverterConstructor }, + { &kZIPWRITER_CID, false, nullptr, nsZipWriterConstructor }, + { nullptr } +}; + +static const mozilla::Module::ContractIDEntry kZipWriterContracts[] = { + { "@mozilla.org/streamconv;1?from=uncompressed&to=deflate", &kDEFLATECONVERTER_CID }, + { "@mozilla.org/streamconv;1?from=uncompressed&to=gzip", &kDEFLATECONVERTER_CID }, + { "@mozilla.org/streamconv;1?from=uncompressed&to=x-gzip", &kDEFLATECONVERTER_CID }, + { "@mozilla.org/streamconv;1?from=uncompressed&to=rawdeflate", &kDEFLATECONVERTER_CID }, + { ZIPWRITER_CONTRACTID, &kZIPWRITER_CID }, + { nullptr } +}; + +static const mozilla::Module kZipWriterModule = { + mozilla::Module::kVersion, + kZipWriterCIDs, + kZipWriterContracts +}; + +NSMODULE_DEFN(ZipWriterModule) = &kZipWriterModule; |