https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 803370a48e1ecd421db5ea0bf18d5c5a24853854 authored by ffxbld on 27 October 2015, 16:04:17 UTC
Added FIREFOX_38_4_0esr_RELEASE FIREFOX_38_4_0esr_BUILD1 tag(s) for changeset d8cefc58bd1a. DONTBUILD CLOSED TREE a=release
Tip revision: 803370a
XPCModule.cpp
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=8 sts=4 et sw=4 tw=99: */
/* 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/. */

#define XPCONNECT_MODULE
#include "xpcprivate.h"

nsresult
xpcModuleCtor()
{
    nsXPConnect::InitStatics();

    return NS_OK;
}

void
xpcModuleDtor()
{
    // Release our singletons
    nsXPConnect::ReleaseXPConnectSingleton();
    xpc_DestroyJSxIDClassObjects();
}
back to top