#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_V8_SYNC_ITERATOR_HIGHLIGHT_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_CORE_V8_V8_SYNC_ITERATOR_HIGHLIGHT_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/bindings/sync_iterator_base.h"
#include "third_party/blink/renderer/platform/bindings/v8_interface_bridge.h"
#include "third_party/blink/renderer/platform/heap/member.h"
namespace blink {
class AbstractRange;
class ExecutionContext;
class Highlight;
struct WrapperTypeInfo;
template <>
class CORE_EXPORT SyncIterator<Highlight> final : public bindings::SyncIteratorBase { … };
class CORE_EXPORT V8SyncIteratorHighlight final : public bindings::V8InterfaceBridge<V8SyncIteratorHighlight, SyncIterator<Highlight>> { … };
}
#endif