Bumping manifests a=b2g-bump
[gecko.git] / dom / ipc / PCrashReporter.ipdl
blobf7e0e7f23ec770564933b4d58cdfe8365fff403d
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2  * vim: set sw=4 ts=8 et tw=80 : 
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 include protocol PContent;
8 include protocol PPluginModule;
9 include protocol PGMP;
11 namespace mozilla {
12 namespace dom {
14 struct Mapping {
15   nsCString library_name;
16   nsCString file_id;
17   uintptr_t start_address;
18   size_t mapping_length;
19   size_t file_offset;
22 intr protocol PCrashReporter {
23   manager PContent or PPluginModule or PGMP;
24 parent:
25   AnnotateCrashReport(nsCString key, nsCString data);
26   AppendAppNotes(nsCString data);
27   __delete__();