From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- editor/txmgr/nsTransactionManagerFactory.cpp | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 editor/txmgr/nsTransactionManagerFactory.cpp (limited to 'editor/txmgr/nsTransactionManagerFactory.cpp') diff --git a/editor/txmgr/nsTransactionManagerFactory.cpp b/editor/txmgr/nsTransactionManagerFactory.cpp new file mode 100644 index 000000000..a4cbb5950 --- /dev/null +++ b/editor/txmgr/nsTransactionManagerFactory.cpp @@ -0,0 +1,38 @@ +/* -*- 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 + +#include "mozilla/Module.h" +#include "mozilla/ModuleUtils.h" +#include "nsID.h" +#include "nsITransactionManager.h" +#include "nsTransactionManager.h" +#include "nsTransactionManagerCID.h" + +//////////////////////////////////////////////////////////////////////// +// Define the contructor function for the objects +// +// NOTE: This creates an instance of objects by using the default constructor +// +NS_GENERIC_FACTORY_CONSTRUCTOR(nsTransactionManager) +NS_DEFINE_NAMED_CID(NS_TRANSACTIONMANAGER_CID); + +static const mozilla::Module::CIDEntry kTxMgrCIDs[] = { + { &kNS_TRANSACTIONMANAGER_CID, false, nullptr, nsTransactionManagerConstructor }, + { nullptr } +}; + +static const mozilla::Module::ContractIDEntry kTxMgrContracts[] = { + { NS_TRANSACTIONMANAGER_CONTRACTID, &kNS_TRANSACTIONMANAGER_CID }, + { nullptr } +}; + +static const mozilla::Module kTxMgrModule = { + mozilla::Module::kVersion, + kTxMgrCIDs, + kTxMgrContracts +}; +NSMODULE_DEFN(nsTransactionManagerModule) = &kTxMgrModule; -- cgit v1.2.3