https://github.com/mozilla/gecko-dev
Raw File
Tip revision: dfad3f48893a612a212cefe049b0e0e374b83fc0 authored by ffxbld on 18 January 2017, 23:29:36 UTC
Added FENNEC_51_0_RELEASE FENNEC_51_0_BUILD2 tag(s) for changeset 4ac4d1d6d1d9. DONTBUILD CLOSED TREE a=release
Tip revision: dfad3f4
nsTextServicesFactory.cpp
/* -*- 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 "nsIGenericFactory.h"

#include "nsTextServicesDocument.h"
#include "nsTextServicesCID.h"

////////////////////////////////////////////////////////////////////////
// Define the contructor function for the objects
//
// NOTE: This creates an instance of objects by using the default constructor
//
NS_GENERIC_FACTORY_CONSTRUCTOR(nsTextServicesDocument)

////////////////////////////////////////////////////////////////////////
// Define a table of CIDs implemented by this module along with other
// information like the function to create an instance, contractid, and
// class name.
//
static const nsModuleComponentInfo components[] = {
  { nullptr, NS_TEXTSERVICESDOCUMENT_CID, "@mozilla.org/textservices/textservicesdocument;1", nsTextServicesDocumentConstructor },
};

////////////////////////////////////////////////////////////////////////
// Implement the NSGetModule() exported function for your module
// and the entire implementation of the module object.
//
NS_IMPL_NSGETMODULE(nsTextServicesModule, components)
back to top