tor-browser

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

TestInterfaceSetlike.cpp (1767B)


      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 file,
      5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #include "mozilla/dom/TestInterfaceSetlike.h"
      8 
      9 #include "mozilla/dom/BindingUtils.h"
     10 #include "mozilla/dom/TestInterfaceJSMaplikeSetlikeIterableBinding.h"
     11 #include "nsPIDOMWindow.h"
     12 
     13 namespace mozilla::dom {
     14 
     15 NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TestInterfaceSetlike, mParent)
     16 
     17 NS_IMPL_CYCLE_COLLECTING_ADDREF(TestInterfaceSetlike)
     18 NS_IMPL_CYCLE_COLLECTING_RELEASE(TestInterfaceSetlike)
     19 
     20 NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TestInterfaceSetlike)
     21  NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
     22  NS_INTERFACE_MAP_ENTRY(nsISupports)
     23 NS_INTERFACE_MAP_END
     24 
     25 TestInterfaceSetlike::TestInterfaceSetlike(JSContext* aCx,
     26                                           nsPIDOMWindowInner* aParent)
     27    : mParent(aParent) {}
     28 
     29 // static
     30 already_AddRefed<TestInterfaceSetlike> TestInterfaceSetlike::Constructor(
     31    const GlobalObject& aGlobal, ErrorResult& aRv) {
     32  nsCOMPtr<nsPIDOMWindowInner> window =
     33      do_QueryInterface(aGlobal.GetAsSupports());
     34  if (!window) {
     35    aRv.Throw(NS_ERROR_FAILURE);
     36    return nullptr;
     37  }
     38 
     39  RefPtr<TestInterfaceSetlike> r = new TestInterfaceSetlike(nullptr, window);
     40  return r.forget();
     41 }
     42 
     43 JSObject* TestInterfaceSetlike::WrapObject(JSContext* aCx,
     44                                           JS::Handle<JSObject*> aGivenProto) {
     45  return TestInterfaceSetlike_Binding::Wrap(aCx, this, aGivenProto);
     46 }
     47 
     48 nsPIDOMWindowInner* TestInterfaceSetlike::GetParentObject() const {
     49  return mParent;
     50 }
     51 
     52 }  // namespace mozilla::dom