Bug 1472338: part 2) Change `clipboard.readText()` to read from the clipboard asynchr...
[gecko.git] / dom / reporting / TestingDeprecatedInterface.cpp
blob9a8d65be196c7113c4c6f7e2d81505134cf63478
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 {
12 namespace dom {
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)
22 NS_INTERFACE_MAP_END
24 /* static */
25 already_AddRefed<TestingDeprecatedInterface>
26 TestingDeprecatedInterface::Constructor(const GlobalObject& aGlobal) {
27 nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
28 MOZ_ASSERT(global);
30 RefPtr<TestingDeprecatedInterface> obj =
31 new TestingDeprecatedInterface(global);
32 return obj.forget();
35 TestingDeprecatedInterface::TestingDeprecatedInterface(nsIGlobalObject* aGlobal)
36 : mGlobal(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; }
49 } // namespace dom
50 } // namespace mozilla