michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- michael@0: * vim: set sw=4 ts=8 et tw=80 : 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: include protocol PPluginModule; michael@0: michael@0: namespace mozilla { michael@0: namespace dom { michael@0: michael@0: struct Mapping { michael@0: nsCString library_name; michael@0: nsCString file_id; michael@0: uintptr_t start_address; michael@0: size_t mapping_length; michael@0: size_t file_offset; michael@0: }; michael@0: michael@0: intr protocol PCrashReporter { michael@0: manager PContent or PPluginModule; michael@0: parent: michael@0: AnnotateCrashReport(nsCString key, nsCString data); michael@0: AppendAppNotes(nsCString data); michael@0: __delete__(); michael@0: }; michael@0: michael@0: } michael@0: }