// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/modules/xr/xr_plane_set.h" namespace blink { XRPlaneSet::XRPlaneSet(HeapHashSet<Member<XRPlane>> planes) : … { … } const HeapHashSet<Member<XRPlane>>& XRPlaneSet::elements() const { … } void XRPlaneSet::Trace(Visitor* visitor) const { … } } // namespace blink