tor-browser

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

FontFaceSetIterator.h (1278B)


      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_FontFaceSetIterator_h
      8 #define mozilla_dom_FontFaceSetIterator_h
      9 
     10 #include "mozilla/dom/FontFaceSet.h"
     11 #include "mozilla/dom/FontFaceSetBinding.h"
     12 #include "mozilla/dom/NonRefcountedDOMObject.h"
     13 
     14 namespace mozilla {
     15 namespace dom {
     16 
     17 class FontFaceSetIterator final {
     18 public:
     19  FontFaceSetIterator(FontFaceSet*, bool aIsKeyAndValue);
     20 
     21  NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(FontFaceSetIterator)
     22  NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(FontFaceSetIterator)
     23 
     24  bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto,
     25                  JS::MutableHandle<JSObject*> aReflector);
     26 
     27  // WebIDL
     28  void Next(JSContext* aCx, FontFaceSetIteratorResult& aResult,
     29            ErrorResult& aRv);
     30 
     31 private:
     32  ~FontFaceSetIterator();
     33 
     34  RefPtr<FontFaceSet> mFontFaceSet;
     35  uint32_t mNextIndex;
     36  bool mIsKeyAndValue;
     37 };
     38 
     39 }  // namespace dom
     40 }  // namespace mozilla
     41 
     42 #endif  // !defined(mozilla_dom_FontFaceSetIterator_h)