chromium/third_party/blink/renderer/core/timing/performance_observer_entry_list.cc

// Copyright 2015 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/core/timing/performance_observer_entry_list.h"

#include <algorithm>
#include "third_party/blink/renderer/core/timing/performance_entry.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"

namespace blink {

PerformanceObserverEntryList::PerformanceObserverEntryList(
    const PerformanceEntryVector& entry_vector)
    :{}

PerformanceObserverEntryList::~PerformanceObserverEntryList() = default;

PerformanceEntryVector PerformanceObserverEntryList::getEntries() const {}

PerformanceEntryVector PerformanceObserverEntryList::getEntriesByType(
    const AtomicString& entry_type) {}

PerformanceEntryVector PerformanceObserverEntryList::getEntriesByName(
    const String& name,
    const AtomicString& entry_type) {}

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

}  // namespace blink