tor-browser

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

TestInterfaceSetlikeNode.h (1523B)


      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 #ifndef mozilla_dom_TestInterfaceSetlikeNode_h
      8 #define mozilla_dom_TestInterfaceSetlikeNode_h
      9 
     10 #include "nsCOMPtr.h"
     11 #include "nsWrapperCache.h"
     12 
     13 class nsPIDOMWindowInner;
     14 
     15 namespace mozilla {
     16 
     17 class ErrorResult;
     18 
     19 namespace dom {
     20 
     21 class GlobalObject;
     22 
     23 // Implementation of test binding for webidl setlike interfaces, using
     24 // primitives for key type.
     25 class TestInterfaceSetlikeNode final : public nsISupports,
     26                                       public nsWrapperCache {
     27 public:
     28  NS_DECL_CYCLE_COLLECTING_ISUPPORTS
     29  NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(TestInterfaceSetlikeNode)
     30  explicit TestInterfaceSetlikeNode(JSContext* aCx,
     31                                    nsPIDOMWindowInner* aParent);
     32  nsPIDOMWindowInner* GetParentObject() const;
     33  virtual JSObject* WrapObject(JSContext* aCx,
     34                               JS::Handle<JSObject*> aGivenProto) override;
     35  static already_AddRefed<TestInterfaceSetlikeNode> Constructor(
     36      const GlobalObject& aGlobal, ErrorResult& rv);
     37 
     38 private:
     39  virtual ~TestInterfaceSetlikeNode() = default;
     40  nsCOMPtr<nsPIDOMWindowInner> mParent;
     41 };
     42 
     43 }  // namespace dom
     44 }  // namespace mozilla
     45 
     46 #endif  // mozilla_dom_TestInterfaceSetlikeNode_h