chromium/third_party/blink/renderer/modules/xr/xr_input_source_array.cc

// Copyright 2018 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_input_source_array.h"

namespace blink {

XRInputSource* XRInputSourceArray::AnonymousIndexedGetter(
    unsigned index) const {}

XRInputSource* XRInputSourceArray::operator[](unsigned index) const {}

XRInputSource* XRInputSourceArray::GetWithSourceId(uint32_t source_id) {}

void XRInputSourceArray::RemoveWithSourceId(uint32_t source_id) {}

void XRInputSourceArray::SetWithSourceId(uint32_t source_id,
                                         XRInputSource* input_source) {}

void XRInputSourceArray::Trace(Visitor* visitor) const {}
}  // namespace blink