Files
sousa-gecko/xpcom/base/nsInterfaceRequestorAgg.cpp
Emilio Cobos Álvarez 2223a8bee2 Bug 2054311 - Sort headers in xpcom/. r=xpcom-reviewers,nika
Automatically generated with:

    cp dom/.clang-format xpcom/ && mach format xpcom/**.{cpp,h}

Manual changes:

 * nsTDependentSubstring.cpp was relying on include order, prevent that
   from being changed by clang-format.
 * Missing nsAtom.h include from nsGkAtoms.h
 * nsWindowsHelpers.h needed to keep the include order
 * MemoryPressureLevelMac.h needed mozilla/Attributes.h

Differential Revision: https://phabricator.services.mozilla.com/D311687
2026-07-13 18:24:13 +00:00

73 lines
2.4 KiB
C++

/* 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 "nsInterfaceRequestorAgg.h"
#include "nsCOMPtr.h"
#include "nsIInterfaceRequestor.h"
#include "nsProxyRelease.h"
#include "nsThreadUtils.h"
class nsInterfaceRequestorAgg final : public nsIInterfaceRequestor {
public:
// XXX This needs to support threadsafe refcounting until we fix bug 243591.
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSIINTERFACEREQUESTOR
nsInterfaceRequestorAgg(nsIInterfaceRequestor* aFirst,
nsIInterfaceRequestor* aSecond,
nsIEventTarget* aConsumerTarget = nullptr)
: mFirst(aFirst), mSecond(aSecond), mConsumerTarget(aConsumerTarget) {
if (!mConsumerTarget) {
mConsumerTarget = mozilla::GetCurrentSerialEventTarget();
}
}
private:
~nsInterfaceRequestorAgg();
nsCOMPtr<nsIInterfaceRequestor> mFirst, mSecond;
nsCOMPtr<nsIEventTarget> mConsumerTarget;
};
NS_IMPL_ISUPPORTS(nsInterfaceRequestorAgg, nsIInterfaceRequestor)
NS_IMETHODIMP
nsInterfaceRequestorAgg::GetInterface(const nsIID& aIID, void** aResult) {
nsresult rv = NS_ERROR_NO_INTERFACE;
if (mFirst) {
rv = mFirst->GetInterface(aIID, aResult);
}
if (mSecond && NS_FAILED(rv)) {
rv = mSecond->GetInterface(aIID, aResult);
}
return rv;
}
nsInterfaceRequestorAgg::~nsInterfaceRequestorAgg() {
NS_ProxyRelease("nsInterfaceRequestorAgg::mFirst", mConsumerTarget,
mFirst.forget());
NS_ProxyRelease("nsInterfaceRequestorAgg::mSecond", mConsumerTarget,
mSecond.forget());
}
nsresult NS_NewInterfaceRequestorAggregation(nsIInterfaceRequestor* aFirst,
nsIInterfaceRequestor* aSecond,
nsIInterfaceRequestor** aResult) {
*aResult = new nsInterfaceRequestorAgg(aFirst, aSecond);
NS_ADDREF(*aResult);
return NS_OK;
}
nsresult NS_NewInterfaceRequestorAggregation(nsIInterfaceRequestor* aFirst,
nsIInterfaceRequestor* aSecond,
nsIEventTarget* aTarget,
nsIInterfaceRequestor** aResult) {
*aResult = new nsInterfaceRequestorAgg(aFirst, aSecond, aTarget);
NS_ADDREF(*aResult);
return NS_OK;
}