Automatic update from web-platform-tests Sync interfaces/ with @webref/idl 3.47.3 (#46056) Co-authored-by: wpt-pr-bot <wpt-pr-bot@users.noreply.github.com> -- wpt-commits: dc5e9dafeeaebdaeb0a8a38c4e0aa24009e5b4e1 wpt-pr: 46056
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Compute Pressure Level 1 (https://w3c.github.io/compute-pressure/)
|
|
|
|
enum PressureSource { "thermals", "cpu" };
|
|
|
|
enum PressureState { "nominal", "fair", "serious", "critical" };
|
|
|
|
callback PressureUpdateCallback = undefined (
|
|
sequence<PressureRecord> changes,
|
|
PressureObserver observer
|
|
);
|
|
|
|
[Exposed=(DedicatedWorker,SharedWorker,Window), SecureContext]
|
|
interface PressureObserver {
|
|
constructor(PressureUpdateCallback callback);
|
|
|
|
Promise<undefined> observe(PressureSource source, optional PressureObserverOptions options = {});
|
|
undefined unobserve(PressureSource source);
|
|
undefined disconnect();
|
|
sequence<PressureRecord> takeRecords();
|
|
|
|
[SameObject] static readonly attribute FrozenArray<PressureSource> knownSources;
|
|
};
|
|
|
|
[Exposed=(DedicatedWorker,SharedWorker,Window), SecureContext]
|
|
interface PressureRecord {
|
|
readonly attribute PressureSource source;
|
|
readonly attribute PressureState state;
|
|
readonly attribute DOMHighResTimeStamp time;
|
|
[Default] object toJSON();
|
|
};
|
|
|
|
dictionary PressureObserverOptions {
|
|
[EnforceRange] unsigned long sampleInterval = 0;
|
|
};
|