tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

TestingDeprecatedInterface.cpp (1739B)


      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/. */
      6 
      7 #include "mozilla/dom/TestingDeprecatedInterface.h"
      8 
      9 #include "mozilla/dom/BindingDeclarations.h"
     10 #include "mozilla/dom/ReportingBinding.h"
     11 
     12 namespace mozilla::dom {
     13 
     14 NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TestingDeprecatedInterface, mGlobal)
     15 
     16 NS_IMPL_CYCLE_COLLECTING_ADDREF(TestingDeprecatedInterface)
     17 NS_IMPL_CYCLE_COLLECTING_RELEASE(TestingDeprecatedInterface)
     18 
     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
     23 
     24 /* static */
     25 already_AddRefed<TestingDeprecatedInterface>
     26 TestingDeprecatedInterface::Constructor(const GlobalObject& aGlobal) {
     27  nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
     28  MOZ_ASSERT(global);
     29 
     30  RefPtr<TestingDeprecatedInterface> obj =
     31      new TestingDeprecatedInterface(global);
     32  return obj.forget();
     33 }
     34 
     35 TestingDeprecatedInterface::TestingDeprecatedInterface(nsIGlobalObject* aGlobal)
     36    : mGlobal(aGlobal) {}
     37 
     38 TestingDeprecatedInterface::~TestingDeprecatedInterface() = default;
     39 
     40 JSObject* TestingDeprecatedInterface::WrapObject(
     41    JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
     42  return TestingDeprecatedInterface_Binding::Wrap(aCx, this, aGivenProto);
     43 }
     44 
     45 void TestingDeprecatedInterface::DeprecatedMethod() const {}
     46 
     47 bool TestingDeprecatedInterface::DeprecatedAttribute() const { return true; }
     48 
     49 }  // namespace mozilla::dom