blob: e3461faef8e0f70e579e08c6d2cd9eae4ed9351c [file] [log] [blame]
// Copyright 2020 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://wicg.github.io/performance-measure-memory/#dictdef-memorybreakdownentry
// A single entry of performance.measureUserAgentSpecificMemory() result.
dictionary MemoryBreakdownEntry {
required unsigned long long bytes;
required sequence<MemoryAttribution> attribution;
required sequence<DOMString> types;
};