Bug 1839315: part 4) Link from `SheetLoadData::mWasAlternate` to spec. r=emilio DONTBUILD
[gecko.git] / layout / style / FontFaceSetIterator.h
blobe18669e9b530e92e7392979f5a66b9793c8e1a3e
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 #ifndef mozilla_dom_FontFaceSetIterator_h
8 #define mozilla_dom_FontFaceSetIterator_h
10 #include "mozilla/dom/FontFaceSet.h"
11 #include "mozilla/dom/FontFaceSetBinding.h"
12 #include "mozilla/dom/NonRefcountedDOMObject.h"
14 namespace mozilla {
15 namespace dom {
17 class FontFaceSetIterator final {
18 public:
19 FontFaceSetIterator(FontFaceSet*, bool aIsKeyAndValue);
21 NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(FontFaceSetIterator)
22 NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(FontFaceSetIterator)
24 bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto,
25 JS::MutableHandle<JSObject*> aReflector);
27 // WebIDL
28 void Next(JSContext* aCx, FontFaceSetIteratorResult& aResult,
29 ErrorResult& aRv);
31 private:
32 ~FontFaceSetIterator();
34 RefPtr<FontFaceSet> mFontFaceSet;
35 uint32_t mNextIndex;
36 bool mIsKeyAndValue;
39 } // namespace dom
40 } // namespace mozilla
42 #endif // !defined(mozilla_dom_FontFaceSetIterator_h)