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"
17 class FontFaceSetIterator final
{
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
);
28 void Next(JSContext
* aCx
, FontFaceSetIteratorResult
& aResult
,
32 ~FontFaceSetIterator();
34 RefPtr
<FontFaceSet
> mFontFaceSet
;
40 } // namespace mozilla
42 #endif // !defined(mozilla_dom_FontFaceSetIterator_h)