blob: 83fa192bda94ec45a9dc4ac34fc1e3dc4e49d04a [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/performance-timeline/#dom-performanceobservercallback
callback PerformanceObserverCallback = void (PerformanceObserverEntryList entries, PerformanceObserver observer);
// https://w3c.github.io/performance-timeline/#the-performanceobserver-interface
[
ActiveScriptWrappable,
Exposed=(Window,Worker)
] interface PerformanceObserver {
[CallWith=ScriptState] constructor(PerformanceObserverCallback callback);
[RaisesException] void observe(optional PerformanceObserverInit options = {});
void disconnect();
PerformanceEntryList takeRecords();
[SameObject, SaveSameObject, CallWith=ScriptState] static readonly attribute FrozenArray<DOMString> supportedEntryTypes;
};