#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 { … }
}