michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: include protocol PContent; michael@0: michael@0: namespace mozilla { michael@0: namespace dom { michael@0: michael@0: struct MemoryReport { michael@0: nsCString process; michael@0: nsCString path; michael@0: int32_t kind; michael@0: int32_t units; michael@0: int64_t amount; michael@0: nsCString desc; michael@0: }; michael@0: michael@0: protocol PMemoryReportRequest { michael@0: manager PContent; michael@0: michael@0: parent: michael@0: __delete__(uint32_t generation, MemoryReport[] report); michael@0: }; michael@0: michael@0: } michael@0: }