mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
2a71f17fe3
--HG-- rename : modules/libjar/zipwriter/src/StreamFunctions.cpp => modules/libjar/zipwriter/StreamFunctions.cpp rename : modules/libjar/zipwriter/src/StreamFunctions.h => modules/libjar/zipwriter/StreamFunctions.h rename : modules/libjar/zipwriter/src/ZipWriterModule.cpp => modules/libjar/zipwriter/ZipWriterModule.cpp rename : modules/libjar/zipwriter/src/nsDeflateConverter.cpp => modules/libjar/zipwriter/nsDeflateConverter.cpp rename : modules/libjar/zipwriter/src/nsDeflateConverter.h => modules/libjar/zipwriter/nsDeflateConverter.h rename : modules/libjar/zipwriter/public/nsIZipWriter.idl => modules/libjar/zipwriter/nsIZipWriter.idl rename : modules/libjar/zipwriter/src/nsZipDataStream.cpp => modules/libjar/zipwriter/nsZipDataStream.cpp rename : modules/libjar/zipwriter/src/nsZipDataStream.h => modules/libjar/zipwriter/nsZipDataStream.h rename : modules/libjar/zipwriter/src/nsZipHeader.cpp => modules/libjar/zipwriter/nsZipHeader.cpp rename : modules/libjar/zipwriter/src/nsZipHeader.h => modules/libjar/zipwriter/nsZipHeader.h rename : modules/libjar/zipwriter/src/nsZipWriter.cpp => modules/libjar/zipwriter/nsZipWriter.cpp rename : modules/libjar/zipwriter/src/nsZipWriter.h => modules/libjar/zipwriter/nsZipWriter.h
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
/* 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;
|