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