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"
14 NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TestingDeprecatedInterface
, mGlobal
)
16 NS_IMPL_CYCLE_COLLECTING_ADDREF(TestingDeprecatedInterface
)
17 NS_IMPL_CYCLE_COLLECTING_RELEASE(TestingDeprecatedInterface
)
19 NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TestingDeprecatedInterface
)
20 NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
21 NS_INTERFACE_MAP_ENTRY(nsISupports
)
25 already_AddRefed
<TestingDeprecatedInterface
>
26 TestingDeprecatedInterface::Constructor(const GlobalObject
& aGlobal
) {
27 nsCOMPtr
<nsIGlobalObject
> global
= do_QueryInterface(aGlobal
.GetAsSupports());
30 RefPtr
<TestingDeprecatedInterface
> obj
=
31 new TestingDeprecatedInterface(global
);
35 TestingDeprecatedInterface::TestingDeprecatedInterface(nsIGlobalObject
* aGlobal
)
38 TestingDeprecatedInterface::~TestingDeprecatedInterface() = default;
40 JSObject
* TestingDeprecatedInterface::WrapObject(
41 JSContext
* aCx
, JS::Handle
<JSObject
*> aGivenProto
) {
42 return TestingDeprecatedInterface_Binding::Wrap(aCx
, this, aGivenProto
);
45 void TestingDeprecatedInterface::DeprecatedMethod() const {}
47 bool TestingDeprecatedInterface::DeprecatedAttribute() const { return true; }
50 } // namespace mozilla