blob: cc4e2bec4f172b84a43bf7df6636885c859da957 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_ANCHOR_SET_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_ANCHOR_SET_H_
#include "third_party/blink/renderer/bindings/core/v8/iterable.h"
#include "third_party/blink/renderer/modules/xr/xr_anchor.h"
#include "third_party/blink/renderer/modules/xr/xr_setlike.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class XRAnchorSet : public ScriptWrappable, public XRSetlike<XRAnchor> {
DEFINE_WRAPPERTYPEINFO();
public:
explicit XRAnchorSet(HeapHashSet<Member<XRAnchor>> anchors);
void Trace(blink::Visitor* visitor) override;
protected:
const HeapHashSet<Member<XRAnchor>>& elements() const override;
private:
HeapHashSet<Member<XRAnchor>> anchors_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_ANCHOR_SET_H_