PMemoryReportRequest.ipdl 614 B

123456789101112131415161718192021222324252627282930
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. include protocol PContent;
  6. namespace mozilla {
  7. namespace dom {
  8. struct MemoryReport {
  9. nsCString process;
  10. nsCString path;
  11. int32_t kind;
  12. int32_t units;
  13. int64_t amount;
  14. nsCString desc;
  15. };
  16. protocol PMemoryReportRequest {
  17. manager PContent;
  18. parent:
  19. async Report(MemoryReport aReport);
  20. async __delete__();
  21. };
  22. }
  23. }