1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "mozilla/dom/TestingDeprecatedInterface.h"
8 #include "mozilla/dom/BindingDeclarations.h"
9 #include "mozilla/dom/ReportingBinding.h"
11 namespace mozilla::dom
{
13 NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TestingDeprecatedInterface
, mGlobal
)
15 NS_IMPL_CYCLE_COLLECTING_ADDREF(TestingDeprecatedInterface
)
16 NS_IMPL_CYCLE_COLLECTING_RELEASE(TestingDeprecatedInterface
)
18 NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TestingDeprecatedInterface
)
19 NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
20 NS_INTERFACE_MAP_ENTRY(nsISupports
)
24 already_AddRefed
<TestingDeprecatedInterface
>
25 TestingDeprecatedInterface::Constructor(const GlobalObject
& aGlobal
) {
26 nsCOMPtr
<nsIGlobalObject
> global
= do_QueryInterface(aGlobal
.GetAsSupports());
29 RefPtr
<TestingDeprecatedInterface
> obj
=
30 new TestingDeprecatedInterface(global
);
34 TestingDeprecatedInterface::TestingDeprecatedInterface(nsIGlobalObject
* aGlobal
)
37 TestingDeprecatedInterface::~TestingDeprecatedInterface() = default;
39 JSObject
* TestingDeprecatedInterface::WrapObject(
40 JSContext
* aCx
, JS::Handle
<JSObject
*> aGivenProto
) {
41 return TestingDeprecatedInterface_Binding::Wrap(aCx
, this, aGivenProto
);
44 void TestingDeprecatedInterface::DeprecatedMethod() const {}
46 bool TestingDeprecatedInterface::DeprecatedAttribute() const { return true; }
48 } // namespace mozilla::dom