chromium/third_party/blink/renderer/modules/mediasource/track_default_list.cc

// Copyright 2014 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/mediasource/track_default_list.h"

#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string_hash.h"
#include "third_party/blink/renderer/platform/wtf/text/string_hash.h"

namespace blink {

TrackDefaultList* TrackDefaultList::Create(
    const HeapVector<Member<TrackDefault>>& track_defaults,
    ExceptionState& exception_state) {}

TrackDefault* TrackDefaultList::item(unsigned index) const {}

TrackDefaultList::TrackDefaultList(
    const HeapVector<Member<TrackDefault>>& track_defaults)
    :{}

void TrackDefaultList::Trace(Visitor* visitor) const {}

}  // namespace blink