summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/timing/measure_memory/measure_memory.idl
blob: d319cef8df43c785cd29eb6f460dd6981e3e7ded (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019 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://github.com/WICG/performance-measure-memory

// The result of performance.measureMemory().
dictionary MeasureMemory {
  required unsigned long long bytes;
  required sequence<MeasureMemoryBreakdown> breakdown;
};