mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
babfc6b761
--HG-- extra : rebase_source : 9335e9b4b0ac02e8066fbb79797bbc0d3fd73874
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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 "nsNetUtil.h"
|
|
#include "nsDirectoryViewer.h"
|
|
#include "rdf.h"
|
|
#include "nsRDFCID.h"
|
|
#include "nsCURILoader.h"
|
|
|
|
// Factory constructors
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHTTPIndex, Init)
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDirectoryViewerFactory)
|
|
|
|
NS_DEFINE_NAMED_CID(NS_DIRECTORYVIEWERFACTORY_CID);
|
|
NS_DEFINE_NAMED_CID(NS_HTTPINDEX_SERVICE_CID);
|
|
|
|
static const mozilla::Module::CIDEntry kXPFECIDs[] = {
|
|
{ &kNS_DIRECTORYVIEWERFACTORY_CID, false, nullptr, nsDirectoryViewerFactoryConstructor },
|
|
{ &kNS_HTTPINDEX_SERVICE_CID, false, nullptr, nsHTTPIndexConstructor },
|
|
{ nullptr }
|
|
};
|
|
|
|
static const mozilla::Module::ContractIDEntry kXPFEContracts[] = {
|
|
{ "@mozilla.org/xpfe/http-index-format-factory-constructor", &kNS_DIRECTORYVIEWERFACTORY_CID },
|
|
{ NS_HTTPINDEX_SERVICE_CONTRACTID, &kNS_HTTPINDEX_SERVICE_CID },
|
|
{ NS_HTTPINDEX_DATASOURCE_CONTRACTID, &kNS_HTTPINDEX_SERVICE_CID },
|
|
{ nullptr }
|
|
};
|
|
|
|
static const mozilla::Module::CategoryEntry kXPFECategories[] = {
|
|
{ "Gecko-Content-Viewers", "application/http-index-format", "@mozilla.org/xpfe/http-index-format-factory-constructor" },
|
|
{ nullptr }
|
|
};
|
|
|
|
static const mozilla::Module kXPFEModule = {
|
|
mozilla::Module::kVersion,
|
|
kXPFECIDs,
|
|
kXPFEContracts,
|
|
kXPFECategories
|
|
};
|
|
|
|
NSMODULE_DEFN(application) = &kXPFEModule;
|