blob: c16e1a2e8cf7869a53e5c365e0cc815ad230b72d [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,
Constructor(PerformanceObserverCallback callback),
ConstructorCallWith=ScriptState,
Exposed=(Window,Worker)
] interface PerformanceObserver {
[RaisesException] void observe(PerformanceObserverInit options);
void disconnect();
PerformanceEntryList takeRecords();
};