2010-06-10 22:11:11 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-06-30 19:39:45 +04:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2004-05-18 10:18:15 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
#include "mozilla/GenericFactory.h"
|
2004-05-18 10:18:15 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
namespace mozilla {
|
2004-05-18 10:18:15 +04:00
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(GenericFactory, nsIFactory)
|
2004-05-18 10:18:15 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
GenericFactory::CreateInstance(nsISupports* aOuter, REFNSIID aIID,
|
2014-06-27 05:35:39 +04:00
|
|
|
void** aResult)
|
2010-06-10 22:11:11 +04:00
|
|
|
{
|
|
|
|
return mCtor(aOuter, aIID, aResult);
|
|
|
|
}
|
2004-05-18 10:18:15 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
GenericFactory::LockFactory(bool aLock)
|
2010-06-10 22:11:11 +04:00
|
|
|
{
|
|
|
|
NS_ERROR("Vestigial method, never called!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|