ScriptableContentIterator.h (1089B)
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_scriptablecontentiterator_h 8 #define mozilla_scriptablecontentiterator_h 9 10 #include "mozilla/ContentIterator.h" 11 #include "mozilla/UniquePtr.h" 12 #include "nsCOMPtr.h" 13 #include "nsIScriptableContentIterator.h" 14 15 namespace mozilla { 16 17 class ScriptableContentIterator final : public nsIScriptableContentIterator { 18 public: 19 ScriptableContentIterator(); 20 NS_DECL_CYCLE_COLLECTING_ISUPPORTS 21 NS_DECL_CYCLE_COLLECTION_CLASS(ScriptableContentIterator) 22 NS_DECL_NSISCRIPTABLECONTENTITERATOR 23 24 protected: 25 virtual ~ScriptableContentIterator() = default; 26 void EnsureContentIterator(); 27 28 IteratorType mIteratorType; 29 UniquePtr<SafeContentIteratorBase> mContentIterator; 30 }; 31 32 } // namespace mozilla 33 34 #endif // #ifndef mozilla_scriptablecontentiterator_h